mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-12-18 00:11:06 +00:00
Merge branch 'master' of github.com:graphitemaster/gmqcc
This commit is contained in:
commit
7e76b42f11
1 changed files with 2 additions and 0 deletions
2
parser.c
2
parser.c
|
@ -1690,6 +1690,8 @@ static bool parser_close_paren(parser_t *parser, shunt *sy)
|
||||||
static void parser_reclassify_token(parser_t *parser)
|
static void parser_reclassify_token(parser_t *parser)
|
||||||
{
|
{
|
||||||
size_t i;
|
size_t i;
|
||||||
|
if (parser->tok >= TOKEN_START)
|
||||||
|
return;
|
||||||
for (i = 0; i < operator_count; ++i) {
|
for (i = 0; i < operator_count; ++i) {
|
||||||
if (!strcmp(parser_tokval(parser), operators[i].op)) {
|
if (!strcmp(parser_tokval(parser), operators[i].op)) {
|
||||||
parser->tok = TOKEN_OPERATOR;
|
parser->tok = TOKEN_OPERATOR;
|
||||||
|
|
Loading…
Reference in a new issue