]> granicus.if.org Git - clang/commitdiff
Revert r155737, restoring the MaxDepth in the BalancedDelimiterTracker to 256.
authorChad Rosier <mcrosier@apple.com>
Tue, 29 May 2012 16:57:50 +0000 (16:57 +0000)
committerChad Rosier <mcrosier@apple.com>
Tue, 29 May 2012 16:57:50 +0000 (16:57 +0000)
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

include/clang/Parse/Parser.h

index f3143766cb42e3114568646ff49eb4ed9d4797b8..07d632090112ff7f1fc0ca6698a484f7d880400f 100644 (file)
@@ -455,7 +455,7 @@ private:
       }
     }
     
-    enum { MaxDepth = 512 };
+    enum { MaxDepth = 256 };
     
     bool diagnoseOverflow();
     bool diagnoseMissingClose();