Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPParsersym.java')
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPParsersym.java28
1 files changed, 14 insertions, 14 deletions
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPParsersym.java b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPParsersym.java
index f9126b33f56..68375ba2fdc 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPParsersym.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPParsersym.java
@@ -27,12 +27,12 @@ public interface CPPParsersym {
TK_const_cast = 36,
TK_continue = 80,
TK_default = 81,
- TK_delete = 64,
+ TK_delete = 65,
TK_do = 82,
TK_double = 15,
TK_dynamic_cast = 37,
TK_else = 122,
- TK_enum = 65,
+ TK_enum = 66,
TK_explicit = 38,
TK_export = 74,
TK_extern = 12,
@@ -46,8 +46,8 @@ public interface CPPParsersym {
TK_int = 17,
TK_long = 18,
TK_mutable = 42,
- TK_namespace = 57,
- TK_new = 66,
+ TK_namespace = 58,
+ TK_new = 67,
TK_operator = 7,
TK_private = 114,
TK_protected = 115,
@@ -60,7 +60,7 @@ public interface CPPParsersym {
TK_sizeof = 45,
TK_static = 46,
TK_static_cast = 47,
- TK_struct = 67,
+ TK_struct = 68,
TK_switch = 87,
TK_template = 28,
TK_this = 48,
@@ -70,10 +70,10 @@ public interface CPPParsersym {
TK_typedef = 50,
TK_typeid = 51,
TK_typename = 10,
- TK_union = 68,
+ TK_union = 69,
TK_unsigned = 21,
TK_using = 56,
- TK_virtual = 30,
+ TK_virtual = 31,
TK_void = 22,
TK_volatile = 34,
TK_wchar_t = 23,
@@ -86,7 +86,7 @@ public interface CPPParsersym {
TK_Completion = 2,
TK_EndOfCompletion = 9,
TK_Invalid = 124,
- TK_LeftBracket = 58,
+ TK_LeftBracket = 57,
TK_LeftParen = 3,
TK_LeftBrace = 60,
TK_Dot = 120,
@@ -100,12 +100,12 @@ public interface CPPParsersym {
TK_Plus = 24,
TK_Minus = 25,
TK_Tilde = 5,
- TK_Bang = 31,
+ TK_Bang = 32,
TK_Slash = 91,
TK_Percent = 92,
TK_RightShift = 88,
TK_LeftShift = 89,
- TK_LT = 32,
+ TK_LT = 30,
TK_GT = 63,
TK_LE = 93,
TK_GE = 94,
@@ -130,7 +130,7 @@ public interface CPPParsersym {
TK_AndAssign = 111,
TK_CaretAssign = 112,
TK_OrAssign = 113,
- TK_Comma = 69,
+ TK_Comma = 64,
TK_zero = 55,
TK_RightBracket = 118,
TK_RightParen = 75,
@@ -171,9 +171,9 @@ public interface CPPParsersym {
"MinusMinus",
"template",
"stringlit",
+ "LT",
"virtual",
"Bang",
- "LT",
"const",
"volatile",
"auto",
@@ -198,19 +198,19 @@ public interface CPPParsersym {
"charconst",
"zero",
"using",
- "namespace",
"LeftBracket",
+ "namespace",
"asm",
"LeftBrace",
"class",
"throw",
"GT",
+ "Comma",
"delete",
"enum",
"new",
"struct",
"union",
- "Comma",
"Assign",
"RightBrace",
"Colon",

Back to the top