mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-04 16:31:30 +00:00
[qfcc] Don't copy params for aliased function types
Doing so tramples on the alias data, and the params have already been copied in the unalized type anyway.
This commit is contained in:
parent
6664503aaf
commit
b5259bf8f8
1 changed files with 2 additions and 1 deletions
|
@ -728,8 +728,9 @@ find_type (const type_t *type)
|
|||
// allocate a new one
|
||||
auto new = new_type ();
|
||||
*new = *type;
|
||||
if (is_func (type)) {
|
||||
if (new->meta != ty_alias && is_func (type)) {
|
||||
new->func.param_types = 0;
|
||||
new->func.param_quals = 0;
|
||||
const type_t *t = unalias_type (type);
|
||||
int num_params = t->func.num_params;
|
||||
if (num_params < 0) {
|
||||
|
|
Loading…
Reference in a new issue