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

llvm-svn: 222152
This commit is contained in:
Sylvestre Ledru 2014-11-17 18:26:39 +00:00
parent 28afa18496
commit 30f1708b64
1 changed files with 2 additions and 2 deletions

View File

@ -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()) {