diff options
Diffstat (limited to 'core/container/pool/pool_arena_others.odin')
| -rw-r--r-- | core/container/pool/pool_arena_others.odin | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/core/container/pool/pool_arena_others.odin b/core/container/pool/pool_arena_others.odin index 3069076f7..d2e01ffb7 100644 --- a/core/container/pool/pool_arena_others.odin +++ b/core/container/pool/pool_arena_others.odin @@ -9,11 +9,9 @@ package container_pool import "base:runtime" -import "core:mem" - _Pool_Arena :: runtime.Arena -_DEFAULT_BLOCK_SIZE :: mem.Megabyte +_DEFAULT_BLOCK_SIZE :: runtime.Megabyte _pool_arena_init :: proc(arena: ^Pool_Arena, block_size: uint = DEFAULT_BLOCK_SIZE) -> (err: runtime.Allocator_Error) { runtime.arena_init(arena, block_size, runtime.default_allocator()) or_return |