diff options
author | Bernard Normier <bernard@zeroc.com> | 2005-11-23 19:49:59 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2005-11-23 19:49:59 +0000 |
commit | 25a21eebb5a2bc9dc4da6da38d26646c0563f1dc (patch) | |
tree | b519ea087a7054a7a7769fc79377218ba3fb1f05 /cpp/src/IceGrid/Parser.h | |
parent | bug 667: adding support for java:getset metadata (diff) | |
download | ice-25a21eebb5a2bc9dc4da6da38d26646c0563f1dc.tar.bz2 ice-25a21eebb5a2bc9dc4da6da38d26646c0563f1dc.tar.xz ice-25a21eebb5a2bc9dc4da6da38d26646c0563f1dc.zip |
Fix for bug #664
Diffstat (limited to 'cpp/src/IceGrid/Parser.h')
-rw-r--r-- | cpp/src/IceGrid/Parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/Parser.h b/cpp/src/IceGrid/Parser.h index fa1e70b687d..a479b249351 100644 --- a/cpp/src/IceGrid/Parser.h +++ b/cpp/src/IceGrid/Parser.h @@ -41,7 +41,7 @@ int yyparse(); // YYSTYPE, since YYSTYPE is a C++ type, with constructor, destructor, // assignment operator, etc. // -#define YYMAXDEPTH 20000 // 20000 should suffice. Bison default is 10000 as maximum. +#define YYMAXDEPTH 10000 // 10000 should suffice. Bison default is 10000 as maximum. #define YYINITDEPTH YYMAXDEPTH // Initial depth is set to max depth, for the reasons described above. // |