[cfe-commits] r157627 - /cfe/trunk/include/clang/Parse/Parser.h
Chad Rosier
mcrosier at apple.com
Tue May 29 09:57:50 PDT 2012
Author: mcrosier
Date: Tue May 29 11:57:50 2012
New Revision: 157627
URL: http://llvm.org/viewvc/llvm-project?rev=157627&view=rev
Log:
Revert r155737, restoring the MaxDepth in the BalancedDelimiterTracker to 256.
r155737 turned out to be a temporary work around. The correct fix was in r155823.
Modified:
cfe/trunk/include/clang/Parse/Parser.h
Modified: cfe/trunk/include/clang/Parse/Parser.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Parse/Parser.h?rev=157627&r1=157626&r2=157627&view=diff
==============================================================================
--- cfe/trunk/include/clang/Parse/Parser.h (original)
+++ cfe/trunk/include/clang/Parse/Parser.h Tue May 29 11:57:50 2012
@@ -455,7 +455,7 @@
}
}
- enum { MaxDepth = 512 };
+ enum { MaxDepth = 256 };
bool diagnoseOverflow();
bool diagnoseMissingClose();
More information about the cfe-commits
mailing list