[PATCH] D93113: [clangd] Use enumMember instead of enumConstant
Nathan James via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Dec 11 06:46:30 PST 2020
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG62b4a69969c3: [clangd] Use enumMember instead of enumConstant (authored by njames93).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D93113/new/
https://reviews.llvm.org/D93113
Files:
clang-tools-extra/clangd/SemanticHighlighting.cpp
Index: clang-tools-extra/clangd/SemanticHighlighting.cpp
===================================================================
--- clang-tools-extra/clangd/SemanticHighlighting.cpp
+++ clang-tools-extra/clangd/SemanticHighlighting.cpp
@@ -571,7 +571,7 @@
case HighlightingKind::Enum:
return "enum";
case HighlightingKind::EnumConstant:
- return "enumConstant"; // nonstandard
+ return "enumMember";
case HighlightingKind::Typedef:
return "type";
case HighlightingKind::DependentType:
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D93113.311218.patch
Type: text/x-patch
Size: 510 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20201211/7f7b56fa/attachment.bin>
More information about the cfe-commits
mailing list