[PATCH] D124013: [clangd] Dont include version string in update tasks
Kadir Cetinkaya via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Apr 19 10:27:41 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG1aa3a54921a1: [clangd] Dont include version string in update tasks (authored by kadircet).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D124013/new/
https://reviews.llvm.org/D124013
Files:
clang-tools-extra/clangd/TUScheduler.cpp
Index: clang-tools-extra/clangd/TUScheduler.cpp
===================================================================
--- clang-tools-extra/clangd/TUScheduler.cpp
+++ clang-tools-extra/clangd/TUScheduler.cpp
@@ -798,7 +798,7 @@
void ASTWorker::update(ParseInputs Inputs, WantDiagnostics WantDiags,
bool ContentChanged) {
- std::string TaskName = llvm::formatv("Update ({0})", Inputs.Version);
+ llvm::StringLiteral TaskName = "Update";
auto Task = [=]() mutable {
// Get the actual command as `Inputs` does not have a command.
// FIXME: some build systems like Bazel will take time to preparing
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D124013.423663.patch
Type: text/x-patch
Size: 635 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20220419/2a652981/attachment.bin>
More information about the cfe-commits
mailing list