meta: replace bluelib with fx
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
#ifndef _PARSE_PARSE_H_
|
||||
#define _PARSE_PARSE_H_
|
||||
|
||||
#include <blue/core/queue.h>
|
||||
#include <fx/core/queue.h>
|
||||
#include <ivy/asm/assembler.h>
|
||||
#include <ivy/asm/lex.h>
|
||||
|
||||
@@ -60,7 +60,7 @@ struct parser_state_type {
|
||||
};
|
||||
|
||||
struct parser_state {
|
||||
b_queue_entry s_entry;
|
||||
fx_queue_entry s_entry;
|
||||
const struct parser_state_type* s_type;
|
||||
ivy_assembler_attrib_table s_attrib;
|
||||
void* s_previous_value;
|
||||
@@ -68,7 +68,7 @@ struct parser_state {
|
||||
|
||||
struct ivy_asm_parser {
|
||||
struct ivy_assembler* p_assembler;
|
||||
b_queue p_state;
|
||||
fx_queue p_state;
|
||||
};
|
||||
|
||||
extern struct parser_state* asm_parser_push_state(struct ivy_asm_parser* parser, enum parser_state_type_id type, const ivy_assembler_attrib_table attrib);
|
||||
|
||||
Reference in New Issue
Block a user