mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-15 05:41:59 +00:00
[qfcc] Print auto
for auto type declarations
Better than an ICE :P
This commit is contained in:
parent
f4cbe3f220
commit
b25e64591f
1 changed files with 4 additions and 0 deletions
|
@ -1092,6 +1092,10 @@ print_type_str (dstring_t *str, const type_t *type)
|
|||
dasprintf (str, " (null)");
|
||||
return;
|
||||
}
|
||||
if (is_auto (type)) {
|
||||
dasprintf (str, " auto");
|
||||
return;
|
||||
}
|
||||
switch (type->meta) {
|
||||
case ty_meta_count:
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue