diff options
Diffstat (limited to 'clang-tools-extra/clangd/index/Background.h')
-rw-r--r-- | clang-tools-extra/clangd/index/Background.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/clangd/index/Background.h b/clang-tools-extra/clangd/index/Background.h index 2132e579db4..cc530d5ac58 100644 --- a/clang-tools-extra/clangd/index/Background.h +++ b/clang-tools-extra/clangd/index/Background.h @@ -146,7 +146,7 @@ private: std::condition_variable QueueCV; bool ShouldStop = false; std::deque<std::pair<Task, llvm::ThreadPriority>> Queue; - std::vector<std::thread> ThreadPool; // FIXME: Abstract this away. + AsyncTaskRunner ThreadPool; GlobalCompilationDatabase::CommandChanged::Subscription CommandsChanged; }; |