mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-22 21:54:59 -07:00
map is internally backed by a pointer (i.e. a "reference type")
This commit is contained in:
+2
-2
@@ -427,8 +427,8 @@ void ir_print_type(irFileBuffer *f, irModule *m, Type *t) {
|
||||
|
||||
case Type_Map: {
|
||||
generate_map_internal_types(m->allocator, t);
|
||||
GB_ASSERT(t->Map.generated_struct_type != nullptr);
|
||||
ir_print_type(f, m, t->Map.generated_struct_type);
|
||||
GB_ASSERT(t->Map.internal_type != nullptr);
|
||||
ir_print_type(f, m, t->Map.internal_type);
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user