summaryrefslogtreecommitdiff
path: root/source/lexer.h
diff options
context:
space:
mode:
authornasr <nsrddyn@gmail.com>2026-03-09 19:42:39 +0000
committernasr <nsrddyn@gmail.com>2026-03-09 19:42:39 +0000
commite5d6d76e803a8ea7ae86cd8302826bbfc6bd57fa (patch)
tree71bb02f1bf6007e9f05f2ed39d6489b18e2909d1 /source/lexer.h
parent71ced998122c357bc62e54d9bb4e124c88acf94b (diff)
refactor(main): fixed compilation bugs, and csv invalidtion handling
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 */