diff options
Diffstat (limited to 'clang-tools-extra/clangd/index/MemIndex.h')
| -rw-r--r-- | clang-tools-extra/clangd/index/MemIndex.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/clang-tools-extra/clangd/index/MemIndex.h b/clang-tools-extra/clangd/index/MemIndex.h index 26ae34cfb02..43a217001fa 100644 --- a/clang-tools-extra/clangd/index/MemIndex.h +++ b/clang-tools-extra/clangd/index/MemIndex.h @@ -24,8 +24,9 @@ public: /// accessible as long as `Symbols` is kept alive. void build(std::shared_ptr<std::vector<const Symbol *>> Symbols); - bool fuzzyFind(const Context &Ctx, const FuzzyFindRequest &Req, - std::function<void(const Symbol &)> Callback) const override; + bool + fuzzyFind(const Context &Ctx, const FuzzyFindRequest &Req, + llvm::function_ref<void(const Symbol &)> Callback) const override; private: std::shared_ptr<std::vector<const Symbol *>> Symbols; |

