r222152 - Fix the indentation: Nesting level does not match indentation (CID 1254863)

Sylvestre Ledru sylvestre at debian.org
Mon Nov 17 10:26:39 PST 2014


Author: sylvestre
Date: Mon Nov 17 12:26:39 2014
New Revision: 222152

URL: http://llvm.org/viewvc/llvm-project?rev=222152&view=rev
Log:
Fix the indentation: Nesting level does not match indentation (CID 1254863)


Modified:
    cfe/trunk/lib/Sema/SemaExprObjC.cpp

Modified: cfe/trunk/lib/Sema/SemaExprObjC.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaExprObjC.cpp?rev=222152&r1=222151&r2=222152&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaExprObjC.cpp (original)
+++ cfe/trunk/lib/Sema/SemaExprObjC.cpp Mon Nov 17 12:26:39 2014
@@ -2452,8 +2452,8 @@ ExprResult Sema::BuildInstanceMessage(Ex
         if (ObjCMethodDecl *BestMethod =
               SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod()))
           Method = BestMethod;
-          if (!AreMultipleMethodsInGlobalPool(Sel, Method->isInstanceMethod()))
-            DiagnoseUseOfDecl(Method, SelLoc);
+        if (!AreMultipleMethodsInGlobalPool(Sel, Method->isInstanceMethod()))
+          DiagnoseUseOfDecl(Method, SelLoc);
       }
     } else if (ReceiverType->isObjCClassType() ||
                ReceiverType->isObjCQualifiedClassType()) {





More information about the cfe-commits mailing list