diff options
| author | gingerBill <bill@gingerbill.org> | 2024-07-24 13:47:57 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-07-24 13:47:57 +0100 |
| commit | 38e983cac63a171fb2c96328db644fed8b35d0aa (patch) | |
| tree | b9489661cc31d7aae5bcb8ec34cfa8d430498a58 | |
| parent | 2ddaae45f39c8d8fc3a0fc2bbe5705b8299edc85 (diff) | |
Remove dead code
| -rw-r--r-- | core/os/os2/heap.odin | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/core/os/os2/heap.odin b/core/os/os2/heap.odin index e0cffaf0d..8f9c7680a 100644 --- a/core/os/os2/heap.odin +++ b/core/os/os2/heap.odin @@ -17,7 +17,3 @@ heap_allocator_proc :: proc(allocator_data: rawptr, mode: runtime.Allocator_Mode old_memory: rawptr, old_size: int, loc := #caller_location) -> ([]byte, runtime.Allocator_Error) { return _heap_allocator_proc(allocator_data, mode, size, alignment, old_memory, old_size, loc) } - - -@(private) -error_allocator := heap_allocator |