mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-07 23:11:15 +00:00
Getting rid of some debug output
This commit is contained in:
parent
3017c92edf
commit
78d223fdcb
1 changed files with 0 additions and 2 deletions
2
parser.c
2
parser.c
|
@ -1172,11 +1172,9 @@ static bool parser_parse_for(parser_t *parser, ast_block *block, ast_expression
|
||||||
|
|
||||||
/* parse the condition */
|
/* parse the condition */
|
||||||
if (parser->tok != ';') {
|
if (parser->tok != ';') {
|
||||||
printf("going cond!\n");
|
|
||||||
cond = parser_expression_leave(parser);
|
cond = parser_expression_leave(parser);
|
||||||
if (!cond)
|
if (!cond)
|
||||||
goto onerr;
|
goto onerr;
|
||||||
printf("going cond!\n");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* move on to incrementor */
|
/* move on to incrementor */
|
||||||
|
|
Loading…
Reference in a new issue