mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 09:51:41 +00:00
print out field types correctly
This commit is contained in:
parent
b871c678f4
commit
4725a44098
1 changed files with 5 additions and 0 deletions
|
@ -99,6 +99,11 @@ print_type (type_t *type)
|
|||
return;
|
||||
}
|
||||
switch (type->type) {
|
||||
case ev_field:
|
||||
printf (" .(");
|
||||
print_type (type->aux_type);
|
||||
printf (")");
|
||||
break;
|
||||
case ev_func:
|
||||
print_type (type->aux_type);
|
||||
if (type->num_parms < 0) {
|
||||
|
|
Loading…
Reference in a new issue