This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] cp/name-lookup.h: Remove CLASS_SCOPE_HT_SIZE.


Hi,

Attached is a patch to remove CLASS_SCOPE_HT_SIZE as its last use was
removed by

  http://gcc.gnu.org/ml/gcc-cvs/2003-05/msg00714.html

Tested on i686-pc-linux-gnu.  OK to apply?

Kazu Hirata

2005-04-08  Kazu Hirata  <kazu@cs.umass.edu>

	* name-lookup.h (CLASS_SCOPE_HT_SIZE): Remove.

Index: name-lookup.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cp/name-lookup.h,v
retrieving revision 1.38
diff -u -d -p -r1.38 name-lookup.h
--- name-lookup.h	14 Mar 2005 14:33:26 -0000	1.38
+++ name-lookup.h	8 Apr 2005 18:55:29 -0000
@@ -41,7 +41,6 @@ struct binding_entry_s GTY(())
 
 /* These macros indicate the initial chains count for binding_table.  */
 #define SCOPE_DEFAULT_HT_SIZE                        (1 << 3)
-#define CLASS_SCOPE_HT_SIZE                          (1 << 3)
 #define NAMESPACE_ORDINARY_HT_SIZE                   (1 << 5)
 #define NAMESPACE_STD_HT_SIZE                        (1 << 8)
 #define GLOBAL_SCOPE_HT_SIZE                         (1 << 8)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]