| 78 | } |
| 79 | |
| 80 | bool VisitNamespaceDecl(clang::NamespaceDecl *d) { |
| 81 | annotator.registerReference(d, d->getLocation(), Annotator::Namespace, Annotator::Declaration); |
| 82 | return true; |
| 83 | } |
| 84 | bool VisitNamespaceAliasDecl(clang::NamespaceAliasDecl *d) { |
| 85 | annotator.registerReference(d, d->getLocation(), Annotator::Namespace, Annotator::Declaration); |
| 86 | annotator.registerReference(d, d->getTargetNameLoc() , Annotator::Namespace); |
nothing calls this directly
no test coverage detected