diff options
Diffstat (limited to 'clang-tools-extra/clangd/ClangdServer.h')
-rw-r--r-- | clang-tools-extra/clangd/ClangdServer.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/clang-tools-extra/clangd/ClangdServer.h b/clang-tools-extra/clangd/ClangdServer.h index 79dcf278457..d31638a4c57 100644 --- a/clang-tools-extra/clangd/ClangdServer.h +++ b/clang-tools-extra/clangd/ClangdServer.h @@ -11,7 +11,6 @@ #define LLVM_CLANG_TOOLS_EXTRA_CLANGD_CLANGDSERVER_H #include "ClangdUnit.h" -#include "ClangdUnitStore.h" #include "CodeComplete.h" #include "CompileArgsCache.h" #include "DraftStore.h" @@ -158,11 +157,7 @@ public: /// Remove \p File from list of tracked files, schedule a request to free /// resources associated with it. - /// \return A future that will become ready when the file is removed and all - /// associated resources are freed. - /// FIXME: don't return futures here, LSP does not require a response for this - /// request. - std::future<void> removeDocument(PathRef File); + void removeDocument(PathRef File); /// Force \p File to be reparsed using the latest contents. /// Will also check if CompileCommand, provided by GlobalCompilationDatabase |