]> granicus.if.org Git - clang/commitdiff
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)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@229282 91177308-0d34-0410-b5e6-96231b3b80d8

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

index f21d5be24d02b7825d5f520745526377475d96d7..e7ca66de487c97f186b049b71da2f0d84367076e 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 7aaaf53cac9a6a776b693ae06252610789c18699..d3604925028b7d8e429d3a30b647e8a6d1232e4c 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;
     }