summaryrefslogtreecommitdiff
path: root/source/lexer.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/lexer.h')
-rw-r--r--source/lexer.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/source/lexer.h b/source/lexer.h
index 7bafc0d..c950a58 100644
--- a/source/lexer.h
+++ b/source/lexer.h
@@ -16,7 +16,6 @@ enum token_type
16 TOKEN_UNDEFINED = 255, 16 TOKEN_UNDEFINED = 255,
17 TOKEN_IDENTIFIER, 17 TOKEN_IDENTIFIER,
18 TOKEN_VALUE, 18 TOKEN_VALUE,
19
20}; 19};
21 20
22typedef struct token token; 21typedef struct token token;
@@ -25,8 +24,7 @@ struct token
25 string8 lexeme; 24 string8 lexeme;
26 token_type type; 25 token_type type;
27 token_flags flags; 26 token_flags flags;
27 token *next;
28}; 28};
29 29
30
31
32#endif /* ENGINE_LEXER_H */ 30#endif /* ENGINE_LEXER_H */