Sema: Formatting. No behavior change.
authorFrancisco Lopes da Silva <oblita@gmail.com>
Sun, 25 Jan 2015 17:00:47 +0000 (17:00 +0000)
committerFrancisco Lopes da Silva <oblita@gmail.com>
Sun, 25 Jan 2015 17:00:47 +0000 (17:00 +0000)
llvm-svn: 227052

clang/lib/Sema/SemaCodeComplete.cpp

index b965e70..ab097d4 100644 (file)
@@ -3947,7 +3947,7 @@ void Sema::CodeCompleteCall(Scope *S, Expr *Fn, ArrayRef<Expr *> 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);