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:
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:
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits