From: Eli Friedman Date: Wed, 4 Jan 2012 02:46:53 +0000 (+0000) Subject: Fix messed-up indentation in r147515. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=deeab90783eb28d955add1062b616c030eb2b781;p=clang Fix messed-up indentation in r147515. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@147517 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Parse/ParseExprCXX.cpp b/lib/Parse/ParseExprCXX.cpp index 901a537f5e..4776ab93c5 100644 --- a/lib/Parse/ParseExprCXX.cpp +++ b/lib/Parse/ParseExprCXX.cpp @@ -793,8 +793,8 @@ ExprResult Parser::ParseLambdaExpressionAfterIntroducer( TrailingReturnType), Attr, DeclEndLoc); - // Inform sema that we are starting a block. - Actions.ActOnLambdaArguments(D, getCurScope()); + // Inform sema that we are starting a block. + Actions.ActOnLambdaArguments(D, getCurScope()); } // Parse compound-statement. @@ -812,12 +812,12 @@ ExprResult Parser::ParseLambdaExpressionAfterIntroducer( StmtResult Stmt(ParseCompoundStatementBody()); BodyScope.Exit(); - if (!Stmt.isInvalid()) - return Actions.ActOnLambdaExpr(LambdaBeginLoc, Stmt.take(), - getCurScope()); + if (!Stmt.isInvalid()) + return Actions.ActOnLambdaExpr(LambdaBeginLoc, Stmt.take(), + getCurScope()); - Actions.ActOnLambdaError(LambdaBeginLoc, getCurScope()); - return ExprError(); + Actions.ActOnLambdaError(LambdaBeginLoc, getCurScope()); + return ExprError(); } /// ParseCXXCasts - This handles the various ways to cast expressions to another