mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +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:
|
case ex_selector:
|
||||||
return &type_SEL;
|
return &type_SEL;
|
||||||
case ex_alias:
|
case ex_alias:
|
||||||
return e->e.alias.type;
|
type = e->e.alias.type;
|
||||||
|
break;
|
||||||
case ex_address:
|
case ex_address:
|
||||||
return e->e.address.type;
|
type = e->e.address.type;
|
||||||
|
break;
|
||||||
case ex_assign:
|
case ex_assign:
|
||||||
return get_type (e->e.assign.dst);
|
return get_type (e->e.assign.dst);
|
||||||
case ex_count:
|
case ex_count:
|
||||||
|
|
Loading…
Reference in a new issue