changeset 7051:405001b6a514

[project @ 2007-10-23 14:26:54 by jwe]
author jwe
date Tue, 23 Oct 2007 14:26:55 +0000
parents bd56a0609c4f
children ee70ac66041f
files src/ChangeLog src/symtab.h
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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  <jwe@octave.org>
+
+	* symtab.h (symbol_table::symbol_table): Reduce default table size
+	to 64.
+
 2007-10-22  Kim Hansen  <kimhanse@gmail.com>
 
 	* unwind-prot.cc: Include <cstring>.
--- 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)