[PATCH] D70809: [clangd] Tweak the no-index error message for rename, NFC.
Haojian Wu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Nov 28 04:05:47 PST 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rG08cce03a6d95: [clangd] Tweak the no-index error message for rename, NFC. (authored by hokein).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D70809/new/
https://reviews.llvm.org/D70809
Files:
clang-tools-extra/clangd/refactor/Rename.cpp
Index: clang-tools-extra/clangd/refactor/Rename.cpp
===================================================================
--- clang-tools-extra/clangd/refactor/Rename.cpp
+++ clang-tools-extra/clangd/refactor/Rename.cpp
@@ -186,7 +186,7 @@
case ReasonToReject::NoSymbolFound:
return "there is no symbol at the given location";
case ReasonToReject::NoIndexProvided:
- return "symbol may be used in other files (no index available)";
+ return "no index provided";
case ReasonToReject::UsedOutsideFile:
return "the symbol is used outside main file";
case ReasonToReject::NonIndexable:
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D70809.231401.patch
Type: text/x-patch
Size: 624 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20191128/6c72dd18/attachment.bin>
More information about the cfe-commits
mailing list