mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-03 16:01:38 +00:00
[qfcc] Fix type_count for type aliases
It was returning type_size by mistake (c&p programming ftw).
This commit is contained in:
parent
1e58a1b12e
commit
5690fd028d
1 changed files with 1 additions and 1 deletions
|
@ -1995,7 +1995,7 @@ type_count (const type_t *type)
|
|||
case ty_class:
|
||||
return 1;
|
||||
case ty_alias:
|
||||
return type_size (type->alias.aux_type);
|
||||
return type_count (type->alias.aux_type);
|
||||
case ty_algebra:
|
||||
internal_error (0, "count of algebra type");
|
||||
case ty_meta_count:
|
||||
|
|
Loading…
Reference in a new issue