diff options
Diffstat (limited to 'clang-tools-extra/clangd/index/SymbolCollector.h')
-rw-r--r-- | clang-tools-extra/clangd/index/SymbolCollector.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/clang-tools-extra/clangd/index/SymbolCollector.h b/clang-tools-extra/clangd/index/SymbolCollector.h index bc5095d516d..7643b1f8286 100644 --- a/clang-tools-extra/clangd/index/SymbolCollector.h +++ b/clang-tools-extra/clangd/index/SymbolCollector.h @@ -99,14 +99,14 @@ public: } bool - handleDeclOccurence(const Decl *D, index::SymbolRoleSet Roles, - ArrayRef<index::SymbolRelation> Relations, - SourceLocation Loc, - index::IndexDataConsumer::ASTNodeInfo ASTNode) override; - - bool handleMacroOccurence(const IdentifierInfo *Name, const MacroInfo *MI, - index::SymbolRoleSet Roles, - SourceLocation Loc) override; + handleDeclOccurrence(const Decl *D, index::SymbolRoleSet Roles, + ArrayRef<index::SymbolRelation> Relations, + SourceLocation Loc, + index::IndexDataConsumer::ASTNodeInfo ASTNode) override; + + bool handleMacroOccurrence(const IdentifierInfo *Name, const MacroInfo *MI, + index::SymbolRoleSet Roles, + SourceLocation Loc) override; SymbolSlab takeSymbols() { return std::move(Symbols).build(); } RefSlab takeRefs() { return std::move(Refs).build(); } |