From: Richard Smith Date: Fri, 11 Nov 2011 05:48:57 +0000 (+0000) Subject: Reduce the constexpr stack pressure somewhat. Hopefully this will be enough to X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cd99b072e8b32075da6233cbf14ea58a5c82de4f;p=clang Reduce the constexpr stack pressure somewhat. Hopefully this will be enough to please the buildbots. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@144375 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/ExprConstant.cpp b/lib/AST/ExprConstant.cpp index 75f32ab5d4..2027b42d96 100644 --- a/lib/AST/ExprConstant.cpp +++ b/lib/AST/ExprConstant.cpp @@ -1033,7 +1033,7 @@ static EvalStmtResult EvaluateStmt(CCValue &Result, EvalInfo &Info, } namespace { -typedef SmallVector ArgVector; +typedef SmallVector ArgVector; } /// EvaluateArgs - Evaluate the arguments to a function call.