lang: add missing includes

This commit is contained in:
2024-11-22 22:30:26 +00:00
parent f1be82c495
commit 6f06f42953
2 changed files with 9 additions and 5 deletions

View File

@@ -2,8 +2,10 @@
#define _LEX_H_
#include <blue/core/queue.h>
#include <blue/object/string.h>
#include <blue/object/dict.h>
#include <blue/object/string.h>
#include <ivy/lang/lex.h>
#include <ivy/status.h>
#include <stdint.h>
struct ivy_lexer {
@@ -52,4 +54,4 @@ struct lex_token_def {
uint64_t name_hash;
};
#endif
#endif