mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 09:22:22 -07:00
2f85257bad
`make(map[K]V)` was resolving to `make_map_cap()` which allocates initial capacity when it wasn't intended to. It now calls `make_map()` which doesn't allocate any capacity. Both `make(map[K]V)` and `make(map[K]V, allocator)` will NOT allocate initial capacity now.