From e5d6d76e803a8ea7ae86cd8302826bbfc6bd57fa Mon Sep 17 00:00:00 2001 From: nasr Date: Mon, 9 Mar 2026 19:42:39 +0000 Subject: refactor(main): fixed compilation bugs, and csv invalidtion handling --- source/lexer.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'source/lexer.h') 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 TOKEN_UNDEFINED = 255, TOKEN_IDENTIFIER, TOKEN_VALUE, - }; typedef struct token token; @@ -25,8 +24,7 @@ struct token string8 lexeme; token_type type; token_flags flags; + token *next; }; - - #endif /* ENGINE_LEXER_H */ -- cgit v1.3