Skip to content

Commit 0f6d25b

Browse files
committed
Remove Constant tag
1 parent 2d82242 commit 0f6d25b

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

clang-tools-extra/clangd/Protocol.h

+10-9
Original file line numberDiff line numberDiff line change
@@ -1102,15 +1102,16 @@ enum class SymbolTag {
11021102
Abstract = 9,
11031103
Final = 10,
11041104
Sealed = 11,
1105-
Transient = 12,
1106-
Volatile = 13,
1107-
Synchronized = 14,
1108-
Virtual = 15,
1109-
Nullable = 16,
1110-
NonNull = 17,
1111-
Declaration = 18,
1112-
Definition = 19,
1113-
ReadOnly = 20,
1105+
Constant = 12,
1106+
Transient = 13,
1107+
Volatile = 14,
1108+
Synchronized = 15,
1109+
Virtual = 16,
1110+
Nullable = 17,
1111+
NonNull = 18,
1112+
Declaration = 19,
1113+
Definition = 20,
1114+
ReadOnly = 21,
11141115
};
11151116
llvm::json::Value toJSON(SymbolTag);
11161117
/// Represents programming constructs like variables, classes, interfaces etc.

0 commit comments

Comments
 (0)