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 901a537..4776ab9 100644
--- a/lib/Parse/ParseExprCXX.cpp
+++ b/lib/Parse/ParseExprCXX.cpp
@@ -793,8 +793,8 @@
                                            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 @@
   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