[clang-tools-extra] cb3c13f - [clangd] Propagate CollectMainFileRefs to BackgroundIndex
Nathan Ridge via cfe-commits
cfe-commits at lists.llvm.org
Tue Oct 13 06:20:31 PDT 2020
Author: Nathan Ridge
Date: 2020-10-13T09:20:18-04:00
New Revision: cb3c13fab6beac4666865b68bea59aae593aaf83
URL: https://github.com/llvm/llvm-project/commit/cb3c13fab6beac4666865b68bea59aae593aaf83
DIFF: https://github.com/llvm/llvm-project/commit/cb3c13fab6beac4666865b68bea59aae593aaf83.diff
LOG: [clangd] Propagate CollectMainFileRefs to BackgroundIndex
This appears to have been an omission in D83536.
Differential Revision: https://reviews.llvm.org/D89284
Added:
Modified:
clang-tools-extra/clangd/ClangdServer.cpp
Removed:
################################################################################
diff --git a/clang-tools-extra/clangd/ClangdServer.cpp b/clang-tools-extra/clangd/ClangdServer.cpp
index 82dd7436b6f4..41c26be970d0 100644
--- a/clang-tools-extra/clangd/ClangdServer.cpp
+++ b/clang-tools-extra/clangd/ClangdServer.cpp
@@ -219,6 +219,7 @@ ClangdServer::ClangdServer(const GlobalCompilationDatabase &CDB,
BGOpts.ContextProvider = [this](PathRef P) {
return createProcessingContext(P);
};
+ BGOpts.CollectMainFileRefs = Opts.CollectMainFileRefs;
BackgroundIdx = std::make_unique<BackgroundIndex>(
TFS, CDB,
BackgroundIndexStorage::createDiskBackedStorageFactory(
More information about the cfe-commits
mailing list