mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-27 22:22:17 +00:00
verbose error about unhandled operators
This commit is contained in:
parent
7bc564f175
commit
7c731b70cf
1 changed files with 1 additions and 1 deletions
2
parser.c
2
parser.c
|
@ -484,7 +484,7 @@ static bool parser_sy_pop(parser_t *parser, shunt *sy)
|
||||||
switch (op->id)
|
switch (op->id)
|
||||||
{
|
{
|
||||||
default:
|
default:
|
||||||
parseerror(parser, "internal error: unhandled operator");
|
parseerror(parser, "internal error: unhandled operator: %s (%i)", op->op, (int)op->id);
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
case opid1('.'):
|
case opid1('.'):
|
||||||
|
|
Loading…
Reference in a new issue