Wrap to 80 columns. No behavior change.
authorNico Weber <nicolasweber@gmx.de>
Sun, 15 Feb 2015 06:15:40 +0000 (06:15 +0000)
committerNico Weber <nicolasweber@gmx.de>
Sun, 15 Feb 2015 06:15:40 +0000 (06:15 +0000)
llvm-svn: 229282

clang/lib/Parse/ParseExprCXX.cpp
clang/lib/Sema/SemaDecl.cpp

index f21d5be..e7ca66d 100644 (file)
@@ -659,7 +659,8 @@ ExprResult Parser::ParseCXXIdExpression(bool isAddressOfOperand) {
   ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
 
   Token Replacement;
-  ExprResult Result = tryParseCXXIdExpression(SS, isAddressOfOperand, Replacement);
+  ExprResult Result =
+      tryParseCXXIdExpression(SS, isAddressOfOperand, Replacement);
   if (Result.isUnset()) {
     // If the ExprResult is valid but null, then typo correction suggested a
     // keyword replacement that needs to be reparsed.
index 7aaaf53..d360492 100644 (file)
@@ -3499,7 +3499,8 @@ Decl *Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS,
         DS.getStorageClassSpec() != DeclSpec::SCS_typedef) {
       if (getLangOpts().CPlusPlus ||
           Record->getDeclContext()->isRecord())
-        return BuildAnonymousStructOrUnion(S, DS, AS, Record, Context.getPrintingPolicy());
+        return BuildAnonymousStructOrUnion(S, DS, AS, Record,
+                                           Context.getPrintingPolicy());
 
       DeclaresAnything = false;
     }