From: Chad Rosier Date: Tue, 29 May 2012 16:57:50 +0000 (+0000) Subject: Revert r155737, restoring the MaxDepth in the BalancedDelimiterTracker to 256. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=32dcb1b45d7428611903b6106bd12b7fbc33d391;p=clang 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. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@157627 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Parse/Parser.h b/include/clang/Parse/Parser.h index f3143766cb..07d6320901 100644 --- a/include/clang/Parse/Parser.h +++ b/include/clang/Parse/Parser.h @@ -455,7 +455,7 @@ private: } } - enum { MaxDepth = 512 }; + enum { MaxDepth = 256 }; bool diagnoseOverflow(); bool diagnoseMissingClose();