]> granicus.if.org Git - clang/commitdiff
Parse: cleanup some bleeding whitespace
authorSaleem Abdulrasool <compnerd@compnerd.org>
Thu, 20 Apr 2017 22:23:07 +0000 (22:23 +0000)
committerSaleem Abdulrasool <compnerd@compnerd.org>
Thu, 20 Apr 2017 22:23:07 +0000 (22:23 +0000)
Clean up some bleeding whitespace that I noticed.  NFC

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@300908 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Parse/ParseExpr.cpp

index ad45ab114fde11fa9ac2ef0423b28094a4db04fb..3e02e46ddc7d383ee92f2014edb7c6d0cba10f1e 100644 (file)
@@ -339,7 +339,7 @@ Parser::ParseRHSOfBinaryExpression(ExprResult LHS, prec::Level MinPrec) {
         ColonLoc = Tok.getLocation();
       }
     }
-    
+
     // Code completion for the right-hand side of an assignment expression
     // goes through a special hook that takes the left-hand side into account.
     if (Tok.is(tok::code_completion) && NextTokPrec == prec::Assignment) {
@@ -347,7 +347,7 @@ Parser::ParseRHSOfBinaryExpression(ExprResult LHS, prec::Level MinPrec) {
       cutOffParsing();
       return ExprError();
     }
-    
+
     // Parse another leaf here for the RHS of the operator.
     // ParseCastExpression works here because all RHS expressions in C have it
     // as a prefix, at least. However, in C++, an assignment-expression could
@@ -456,6 +456,7 @@ Parser::ParseRHSOfBinaryExpression(ExprResult LHS, prec::Level MinPrec) {
       if (!getLangOpts().CPlusPlus)
         continue;
     }
+
     // Ensure potential typos aren't left undiagnosed.
     if (LHS.isInvalid()) {
       Actions.CorrectDelayedTyposInExpr(OrigLHS);