mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
[qfcc] Really fix those type aliasing bugs
Found the cause: revered to wrong case for template code :/
This commit is contained in:
parent
62d58a2255
commit
14352ea65a
1 changed files with 4 additions and 2 deletions
|
@ -259,9 +259,11 @@ get_type (expr_t *e)
|
|||
case ex_selector:
|
||||
return &type_SEL;
|
||||
case ex_alias:
|
||||
return e->e.alias.type;
|
||||
type = e->e.alias.type;
|
||||
break;
|
||||
case ex_address:
|
||||
return e->e.address.type;
|
||||
type = e->e.address.type;
|
||||
break;
|
||||
case ex_assign:
|
||||
return get_type (e->e.assign.dst);
|
||||
case ex_count:
|
||||
|
|
Loading…
Reference in a new issue