| 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); |
| 87 | return true; |
| 88 | } |
| 89 | bool VisitFunctionDecl(clang::FunctionDecl *d) { |
| 90 | if(!shouldProcess(d)) return false; |
| 91 | std::string typeText; |
nothing calls this directly
no test coverage detected