about summary refs log tree commit diff
path: root/src/libsyntax/parse/token.rs
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2015-09-11 10:09:22 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2015-09-11 10:09:22 +0300
commit9f1f4c16aa8d6d76f5ead50bfd9eeb1329dfe56b (patch)
tree3645d1a68aae74b02eb093122430de805c92e327 /src/libsyntax/parse/token.rs
parent5f9f0b7cc34141a661822e67a3f05beef27f20dd (diff)
downloadrust-9f1f4c16aa8d6d76f5ead50bfd9eeb1329dfe56b.tar.gz
rust-9f1f4c16aa8d6d76f5ead50bfd9eeb1329dfe56b.zip
Remove some remains of virtual structs from the parser
Diffstat (limited to 'src/libsyntax/parse/token.rs')
-rw-r--r--src/libsyntax/parse/token.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libsyntax/parse/token.rs b/src/libsyntax/parse/token.rs
index ca92a37d8c3..a392872f753 100644
--- a/src/libsyntax/parse/token.rs
+++ b/src/libsyntax/parse/token.rs
@@ -575,13 +575,13 @@ declare_special_idents_and_keywords! {
         (36,                         Type,       "type");
         (37,                         Unsafe,     "unsafe");
         (38,                         Use,        "use");
-        (39,                         Virtual,    "virtual");
-        (40,                         While,      "while");
-        (41,                         Continue,   "continue");
-        (42,                         Box,        "box");
-        (43,                         Const,      "const");
-        (44,                         Where,      "where");
+        (39,                         While,      "while");
+        (40,                         Continue,   "continue");
+        (41,                         Box,        "box");
+        (42,                         Const,      "const");
+        (43,                         Where,      "where");
         'reserved:
+        (44,                         Virtual,    "virtual");
         (45,                         Proc,       "proc");
         (46,                         Alignof,    "alignof");
         (47,                         Become,     "become");