X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=lexer.h;h=cde0863e80877952a7dd8f518bed167ed0355780;hb=062180e9a8578ffbbf941154f2c4fd43163d2ca4;hp=2573fb209c6077ff8931546845e952053e268367;hpb=df8b486c98750ee719ddb88a6bb9b90f1e7557d8;p=xonotic%2Fgmqcc.git diff --git a/lexer.h b/lexer.h index 2573fb2..cde0863 100644 --- a/lexer.h +++ b/lexer.h @@ -114,6 +114,7 @@ typedef struct lex_file_s { char *name; size_t line; size_t sline; /* line at the start of a token */ + size_t column; int peek[256]; size_t peekpos; @@ -340,6 +341,6 @@ static const size_t qcc_operator_count = (sizeof(qcc_operators) / sizeof(qcc_ope extern const oper_info *operators; extern size_t operator_count; -void lexerror(lex_file*, const char *fmt, ...); +/*void lexerror(lex_file*, const char *fmt, ...);*/ #endif