From 78c5574bce592243541cf29d864dec1bdc9183ba Mon Sep 17 00:00:00 2001 From: ehouse Date: Thu, 18 Sep 2008 03:44:43 +0000 Subject: [PATCH] Fix to compile with newer g++; increase size of buffer to handle largest Spanish wordlist. --- dawg/dict2dawg.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dawg/dict2dawg.cpp b/dawg/dict2dawg.cpp index a7f3f8156..affb3ad28 100644 --- a/dawg/dict2dawg.cpp +++ b/dawg/dict2dawg.cpp @@ -42,8 +42,11 @@ #include #include +#include +#include #include #include +#include #include #include @@ -99,7 +102,7 @@ int gLimHigh = MAX_WORD_LEN; // OWL is 1.7M -#define MAX_POOL_SIZE (5 * 0x100000) +#define MAX_POOL_SIZE (10 * 0x100000) #define ERROR_EXIT(...) error_exit( __LINE__, __VA_ARGS__ ); static char* parseARGV( int argc, char** argv, const char** inFileName );