mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
fix a silly parse snafu
This commit is contained in:
parent
aa006ecf64
commit
1f468e2508
1 changed files with 2 additions and 2 deletions
|
@ -330,8 +330,8 @@ def_name
|
|||
;
|
||||
|
||||
opt_comma_elipsis
|
||||
: /* empty */ { $$ = 0 }
|
||||
| ',' ELIPSIS { $$ = 1 }
|
||||
: /* empty */ { $$ = 0; }
|
||||
| ',' ELIPSIS { $$ = 1; }
|
||||
;
|
||||
|
||||
param_list
|
||||
|
|
Loading…
Reference in a new issue