mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-15 10:22:23 -07:00
Make Map_Info store pointers to cell info rather than inline
This commit is contained in:
@@ -2851,6 +2851,9 @@ void init_core_map_type(Checker *c) {
|
||||
t_map_info = find_core_type(c, str_lit("Map_Info"));
|
||||
t_map_cell_info = find_core_type(c, str_lit("Map_Cell_Info"));
|
||||
t_raw_map = find_core_type(c, str_lit("Raw_Map"));
|
||||
|
||||
t_map_info_ptr = alloc_type_pointer(t_map_info);
|
||||
t_map_cell_info_ptr = alloc_type_pointer(t_map_cell_info);
|
||||
}
|
||||
|
||||
void init_preload(Checker *c) {
|
||||
|
||||
Reference in New Issue
Block a user