aboutsummaryrefslogtreecommitdiff
path: root/gcc/rust/lex
diff options
context:
space:
mode:
authorArthur Cohen <arthur.cohen@embecosm.com>2022-12-10 08:58:58 +0100
committerArthur Cohen <arthur.cohen@embecosm.com>2023-01-04 16:37:55 +0100
commitfd25c4fa72fe82f70a389b5c5ee50db0afe30471 (patch)
treed1c62a45e22f69abd90af6c03cfc5259bf99c340 /gcc/rust/lex
parent84a85305de56260ef9cea8116c05fa06d5e6f841 (diff)
downloadgcc-fd25c4fa72fe82f70a389b5c5ee50db0afe30471.zip
gcc-fd25c4fa72fe82f70a389b5c5ee50db0afe30471.tar.gz
gcc-fd25c4fa72fe82f70a389b5c5ee50db0afe30471.tar.bz2
format: Fix git whitespace errors
Diffstat (limited to 'gcc/rust/lex')
-rw-r--r--gcc/rust/lex/rust-token.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/rust/lex/rust-token.h b/gcc/rust/lex/rust-token.h
index 8f5be33..ae4bcfb 100644
--- a/gcc/rust/lex/rust-token.h
+++ b/gcc/rust/lex/rust-token.h
@@ -147,7 +147,6 @@ enum PrimitiveCoreType
RS_TOKEN (INNER_DOC_COMMENT, "#![doc]") \
RS_TOKEN (OUTER_DOC_COMMENT, "#[doc]") \
/* have "weak" union and 'static keywords? */ \
- \
RS_TOKEN_KEYWORD (ABSTRACT, "abstract") /* unused */ \
RS_TOKEN_KEYWORD (AS, "as") \
RS_TOKEN_KEYWORD (ASYNC, "async") /* unused */ \
@@ -200,7 +199,6 @@ enum PrimitiveCoreType
RS_TOKEN_KEYWORD (WHERE, "where") \
RS_TOKEN_KEYWORD (WHILE, "while") \
RS_TOKEN_KEYWORD (YIELD, "yield") /* unused */ \
- \
RS_TOKEN (LAST_TOKEN, "<last-token-marker>")
// Contains all token types. Crappy implementation via x-macros.