From: Wolfgang Bumiller Date: Tue, 15 Jan 2013 19:35:30 +0000 (+0100) Subject: reduce the hashtable size a bit X-Git-Tag: before-library~252 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=e695a5919db838a1204c78ff0fbfab75caedb5e4;p=xonotic%2Fgmqcc.git reduce the hashtable size a bit --- diff --git a/parser.c b/parser.c index ecabe72..3bd1073 100644 --- a/parser.c +++ b/parser.c @@ -31,7 +31,7 @@ /* beginning of locals */ #define PARSER_HT_LOCALS 2 -#define PARSER_HT_SIZE 1024 +#define PARSER_HT_SIZE 128 #define TYPEDEF_HT_SIZE 16 enum parser_pot { POT_PAREN, POT_TERNARY1, POT_TERNARY2 };