asm: add missing includes
This commit is contained in:
@@ -2,8 +2,9 @@
|
||||
#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/asm/lex.h>
|
||||
#include <stdint.h>
|
||||
|
||||
enum lexer_state_type {
|
||||
@@ -19,7 +20,7 @@ struct lexer_state {
|
||||
|
||||
struct ivy_asm_lexer_symbol_node {
|
||||
char s_char;
|
||||
enum ivy_symbol s_id;
|
||||
enum ivy_asm_symbol s_id;
|
||||
|
||||
b_queue_entry s_entry;
|
||||
b_queue s_children;
|
||||
@@ -50,4 +51,4 @@ struct ivy_asm_lexer {
|
||||
size_t lex_linebuf_ptr;
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user