aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-05-29 16:57:50 +0000
committerChad Rosier <mcrosier@apple.com>2012-05-29 16:57:50 +0000
commit32dcb1b45d7428611903b6106bd12b7fbc33d391 (patch)
tree5a403238a59bca8864f660f0dc994199dc40b6fe
parent2ae3a474447eede3a94a356b243a40c35c5582d2 (diff)
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
-rw-r--r--include/clang/Parse/Parser.h2
1 files changed, 1 insertions, 1 deletions
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();