[libclang] Index namespaces in C++ qualified lookup of members, rdar://10732798

llvm-svn: 148706
This commit is contained in:
Argyrios Kyrtzidis 2012-01-23 16:58:38 +00:00
parent 84bd164862
commit 9f777356a3
1 changed files with 5 additions and 0 deletions

View File

@ -34,6 +34,11 @@ public:
return true;
}
bool TraverseNestedNameSpecifierLoc(NestedNameSpecifierLoc NNS) {
IndexCtx.indexNestedNameSpecifierLoc(NNS, Parent, ParentDC);
return true;
}
bool VisitDeclRefExpr(DeclRefExpr *E) {
IndexCtx.handleReference(E->getDecl(), E->getLocation(),
Parent, ParentDC, E);