mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
fix a couple "value computed is not used" not used warnings
This commit is contained in:
parent
cbd5c70320
commit
cc0d8b364d
1 changed files with 2 additions and 2 deletions
|
@ -213,8 +213,8 @@ def
|
|||
{ current_struct = new_struct ($2); } '=' '{' struct_defs '}' { }
|
||||
| UNION NAME
|
||||
{ current_struct = new_union ($2); } '=' '{' struct_defs '}' { }
|
||||
| STRUCT NAME { decl_struct ($2)->type; }
|
||||
| UNION NAME { decl_union ($2)->type; }
|
||||
| STRUCT NAME { decl_struct ($2); }
|
||||
| UNION NAME { decl_union ($2); }
|
||||
| ENUM '{' enum_list opt_comma '}'
|
||||
{ process_enum ($3); }
|
||||
| TYPEDEF type NAME
|
||||
|
|
Loading…
Reference in a new issue