forked from OSchip/llvm-project
[libclang] Index namespaces in C++ qualified lookup of members, rdar://10732798
llvm-svn: 148706
This commit is contained in:
parent
84bd164862
commit
9f777356a3
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue