From: Francisco Lopes da Silva Date: Sun, 25 Jan 2015 17:00:47 +0000 (+0000) Subject: Sema: Formatting. No behavior change. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c8a94162abf14a894fbe2a51c0d05d06a4be18f6;p=clang Sema: Formatting. No behavior change. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@227052 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaCodeComplete.cpp b/lib/Sema/SemaCodeComplete.cpp index b965e70e25..ab097d46dd 100644 --- a/lib/Sema/SemaCodeComplete.cpp +++ b/lib/Sema/SemaCodeComplete.cpp @@ -3947,7 +3947,7 @@ void Sema::CodeCompleteCall(Scope *S, Expr *Fn, ArrayRef Args) { // If expression's type is CXXRecordDecl, it may overload the function // call operator, so we check if it does and add them as candidates. // A complete type is needed to lookup for member function call operators. - if(!RequireCompleteType(Loc, NakedFn->getType(), 0)) { + if (!RequireCompleteType(Loc, NakedFn->getType(), 0)) { DeclarationName OpName = Context.DeclarationNames .getCXXOperatorName(OO_Call); LookupResult R(*this, OpName, Loc, LookupOrdinaryName);