From: Wolfgang (Blub) Bumiller Date: Fri, 24 Aug 2012 21:21:16 +0000 (+0200) Subject: removing some old unused stuff from lexer.h X-Git-Tag: 0.1-rc1~33 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=aca5e05173dff6eed44b69d04a09f9e68d6d46ee;p=xonotic%2Fgmqcc.git removing some old unused stuff from lexer.h --- diff --git a/lexer.h b/lexer.h index df42fd5..c2a9a49 100644 --- a/lexer.h +++ b/lexer.h @@ -253,30 +253,6 @@ static const size_t qcc_operator_count = (sizeof(qcc_operators) / sizeof(qcc_ope extern const oper_info *operators; extern size_t operator_count; - -typedef struct -{ - lex_file *lex; - int error; - lex_ctx ctx; - - token *tokens; - token *lastok; - - token *tok; /* current token */ - - MEM_VECTOR_MAKE(ast_value*, globals); -} parse_file; - -MEM_VECTOR_PROTO(parse_file, ast_value*, globals); - -parse_file* parse_open(const char *file); -void parse_file_close(parse_file*); - -bool parse(parse_file*); - -bool parse_iskey(parse_file *self, const char *ident); - void lexerror(lex_file*, const char *fmt, ...); #endif