From: Sylvestre Ledru Date: Mon, 17 Nov 2014 18:26:39 +0000 (+0000) Subject: Fix the indentation: Nesting level does not match indentation (CID 1254863) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=401135c22d4e482a2deb774913abca35da5a9903;p=clang Fix the indentation: Nesting level does not match indentation (CID 1254863) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@222152 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaExprObjC.cpp b/lib/Sema/SemaExprObjC.cpp index 7cb3c0ad00..eeee352d5e 100644 --- a/lib/Sema/SemaExprObjC.cpp +++ b/lib/Sema/SemaExprObjC.cpp @@ -2452,8 +2452,8 @@ ExprResult Sema::BuildInstanceMessage(Expr *Receiver, 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()) {