diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-04-24 19:52:58 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-04-24 19:52:58 +0330 |
commit | 2ca446ab8604c71ba9c20da5ffc73328dbea0617 (patch) | |
tree | c3de69ea44e2a2bc4abc62245e5fc71b67103f06 /src/compiler | |
parent | caf6ecd9344b13c443435f94c3c5b8ccf717e853 (diff) |
some small improvements
Diffstat (limited to 'src/compiler')
-rw-r--r-- | src/compiler/lexer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/lexer.h b/src/compiler/lexer.h index 862efe7..d1d746b 100644 --- a/src/compiler/lexer.h +++ b/src/compiler/lexer.h @@ -3,7 +3,7 @@ #include "utils/type.h" #include <stddef.h> -typedef enum LexerToken { +typedef enum LexerToken : u8 { LEXER_TOKEN_SYMBOL_CLOSE_CURLY_BRACKET, LEXER_TOKEN_ORDER0 = LEXER_TOKEN_SYMBOL_CLOSE_CURLY_BRACKET, |