mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 01:41:10 +00:00
signed_const isn't needed any more
This commit is contained in:
parent
89da47335b
commit
bfb8eff2f0
1 changed files with 1 additions and 9 deletions
|
@ -65,7 +65,7 @@ typedef struct {
|
|||
|
||||
%type <type> type maybe_func
|
||||
%type <def> param param_list def_item def_list def_name
|
||||
%type <expr> signed_const const expr arg_list
|
||||
%type <expr> const expr arg_list
|
||||
%type <expr> statement statements statement_block
|
||||
%type <function> begin_function
|
||||
|
||||
|
@ -473,14 +473,6 @@ arg_list
|
|||
}
|
||||
;
|
||||
|
||||
signed_const
|
||||
: const
|
||||
| '-' signed_const
|
||||
{
|
||||
$$ = unary_expr ('-', $2);
|
||||
}
|
||||
;
|
||||
|
||||
const
|
||||
: FLOAT_VAL
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue