diff options
Diffstat (limited to 'lib/Sema/SemaLookup.cpp')
-rw-r--r-- | lib/Sema/SemaLookup.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Sema/SemaLookup.cpp b/lib/Sema/SemaLookup.cpp index 78b2626416..ee4c14d0ca 100644 --- a/lib/Sema/SemaLookup.cpp +++ b/lib/Sema/SemaLookup.cpp @@ -610,8 +610,8 @@ Sema::CppLookupName(Scope *S, DeclarationName Name, // using-directives later. for (OutOfLineCtx = Ctx; OutOfLineCtx && !OutOfLineCtx->isFileContext(); OutOfLineCtx = OutOfLineCtx->getParent()) { - if (R = LookupQualifiedName(OutOfLineCtx, Name, NameKind, - RedeclarationOnly)) + if ((R = LookupQualifiedName(OutOfLineCtx, Name, NameKind, + RedeclarationOnly))) return std::make_pair(true, R); } } @@ -638,7 +638,7 @@ Sema::CppLookupName(Scope *S, DeclarationName Name, // context as well as walking through the scopes. LookupResultsTy LookupResults; - assert(!OutOfLineCtx || OutOfLineCtx->isFileContext() && + assert((!OutOfLineCtx || OutOfLineCtx->isFileContext()) && "We should have been looking only at file context here already."); bool LookedInCtx = false; LookupResult Result; |