mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
Fix issue with inferred vector output to JSON. #1839
This commit is contained in:
@@ -162,7 +162,7 @@ void print_type(FILE *file, TypeInfo *type)
|
||||
break;
|
||||
case TYPE_INFO_INFERRED_VECTOR:
|
||||
print_type(file, type->array.base);
|
||||
fputs("[<>]", file);
|
||||
fputs("[<*>]", file);
|
||||
break;
|
||||
case TYPE_INFO_SLICE:
|
||||
print_type(file, type->array.base);
|
||||
|
||||
Reference in New Issue
Block a user