diff options
author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2009-02-07 00:15:38 +0000 |
---|---|---|
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2009-02-07 00:15:38 +0000 |
commit | 224605064a4ef87d1c3d35ad1cb363f8b534012b (patch) | |
tree | e8a4fd33c2d0cf29e5bf199b46456fde514ff7d9 /lib/Sema/SemaLookup.cpp | |
parent | 63b4fe6c118c14707d297f6f879e5e7973b8e6ff (diff) |
Implement dereferencing of pointers-to-member.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63983 91177308-0d34-0410-b5e6-96231b3b80d8
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; |