]> granicus.if.org Git - clang/commitdiff
Wrap to 80 columns. No behavior change.
authorNico Weber <nicolasweber@gmx.de>
Sun, 27 Jul 2014 04:09:29 +0000 (04:09 +0000)
committerNico Weber <nicolasweber@gmx.de>
Sun, 27 Jul 2014 04:09:29 +0000 (04:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@214047 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaExpr.cpp

index c2c886c04ea4fc7f83380c2e48be75574f0b7a4f..dbf0f8ef44b33bd0604335bf7f0963da5625f3fe 100644 (file)
@@ -2364,10 +2364,9 @@ Sema::LookupInObjCMethod(LookupResult &Lookup, Scope *S,
           !IvarBacksCurrentMethodAccessor(IFace, CurMethod, IV))
         Diag(Loc, diag::warn_direct_ivar_access) << IV->getDeclName();
 
-      ObjCIvarRefExpr *Result = new (Context) ObjCIvarRefExpr(IV, IV->getType(),
-                                                              Loc, IV->getLocation(),
-                                                              SelfExpr.get(),
-                                                              true, true);
+      ObjCIvarRefExpr *Result = new (Context)
+          ObjCIvarRefExpr(IV, IV->getType(), Loc, IV->getLocation(),
+                          SelfExpr.get(), true, true);
 
       if (getLangOpts().ObjCAutoRefCount) {
         if (IV->getType().getObjCLifetime() == Qualifiers::OCL_Weak) {