# HG changeset patch # User jwe # Date 1193149615 0 # Node ID 405001b6a514d2418af44ce60f3772616a8c3705 # Parent bd56a0609c4f2dd8b9da898d2e29767e57ef31a5 [project @ 2007-10-23 14:26:54 by jwe] diff -r bd56a0609c4f -r 405001b6a514 src/ChangeLog --- a/src/ChangeLog Tue Oct 23 12:02:18 2007 +0000 +++ b/src/ChangeLog Tue Oct 23 14:26:55 2007 +0000 @@ -1,3 +1,8 @@ +2007-10-23 John W. Eaton + + * symtab.h (symbol_table::symbol_table): Reduce default table size + to 64. + 2007-10-22 Kim Hansen * unwind-prot.cc: Include . diff -r bd56a0609c4f -r 405001b6a514 src/symtab.h --- a/src/symtab.h Tue Oct 23 12:02:18 2007 +0000 +++ b/src/symtab.h Tue Oct 23 14:26:55 2007 +0000 @@ -499,7 +499,7 @@ { public: - symbol_table (unsigned int tab_size = 128, + symbol_table (unsigned int tab_size = 64, const std::string& nm = std::string ()) : table_size (tab_size), table (new symbol_record [table_size]), table_name (nm)