Files
Odin/base/runtime
Tetralux 2f85257bad [runtime] make(map[K]V) should not allocate any capacity
`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.
2024-11-16 06:13:12 +00:00
..
2024-08-11 14:30:48 +03:00
2024-06-04 19:01:30 -04:00
2024-07-14 23:48:33 +01:00
2024-06-05 20:57:39 +02:00
2024-09-19 21:07:08 +11:00
2024-06-05 20:57:39 +02:00
2024-06-29 12:16:43 +01:00