mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
[qfcc] Treat all dereferences and indirect
Why I had a const pointer test on there is beyond me.
This commit is contained in:
parent
69924fe717
commit
1d10136f2e
1 changed files with 1 additions and 1 deletions
|
@ -722,7 +722,7 @@ is_indirect (expr_t *e)
|
|||
return 1;
|
||||
if (!(e->type == ex_uexpr && e->e.expr.op == '.'))
|
||||
return 0;
|
||||
return is_const_ptr (e->e.expr.e1);
|
||||
return 1;
|
||||
}
|
||||
|
||||
static sblock_t *
|
||||
|
|
Loading…
Reference in a new issue