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.

llvm-svn: 157627
This commit is contained in:
Chad Rosier 2012-05-29 16:57:50 +00:00
parent 67030280f9
commit 68d2ca7ecc
1 changed files with 1 additions and 1 deletions

View File

@ -455,7 +455,7 @@ private:
}
}
enum { MaxDepth = 512 };
enum { MaxDepth = 256 };
bool diagnoseOverflow();
bool diagnoseMissingClose();