diff options
author | Jan Korous <jkorous@apple.com> | 2019-08-27 21:49:39 +0000 |
---|---|---|
committer | Jan Korous <jkorous@apple.com> | 2019-08-27 21:49:39 +0000 |
commit | cfd641d84a5ecda9fc466a8568b557eef4fd4d24 (patch) | |
tree | d9350b1ec2fb9683ecbcae78bffa28b95947fed8 /clang/lib/Index/IndexingAction.cpp | |
parent | 4368971b05cc81d35c18086cef2165a974ceb631 (diff) | |
download | bcm5719-llvm-cfd641d84a5ecda9fc466a8568b557eef4fd4d24.tar.gz bcm5719-llvm-cfd641d84a5ecda9fc466a8568b557eef4fd4d24.zip |
[clang][Index][NFC] Move IndexDataConsumer default implementation
llvm-svn: 370116
Diffstat (limited to 'clang/lib/Index/IndexingAction.cpp')
-rw-r--r-- | clang/lib/Index/IndexingAction.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/clang/lib/Index/IndexingAction.cpp b/clang/lib/Index/IndexingAction.cpp index 710be3f7120..41f1008a475 100644 --- a/clang/lib/Index/IndexingAction.cpp +++ b/clang/lib/Index/IndexingAction.cpp @@ -21,27 +21,6 @@ using namespace clang; using namespace clang::index; -bool IndexDataConsumer::handleDeclOccurence(const Decl *D, SymbolRoleSet Roles, - ArrayRef<SymbolRelation> Relations, - SourceLocation Loc, - ASTNodeInfo ASTNode) { - return true; -} - -bool IndexDataConsumer::handleMacroOccurence(const IdentifierInfo *Name, - const MacroInfo *MI, - SymbolRoleSet Roles, - SourceLocation Loc) { - return true; -} - -bool IndexDataConsumer::handleModuleOccurence(const ImportDecl *ImportD, - const Module *Mod, - SymbolRoleSet Roles, - SourceLocation Loc) { - return true; -} - namespace { class IndexASTConsumer : public ASTConsumer { |