diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-01-28 20:16:18 +0000 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-01-28 20:16:18 +0000 |
| commit | e86c990b75bb30f0116430453b42a59317e3fead (patch) | |
| tree | 2645005099bd2cf744299d6a3538408ed5728d39 /core/_preload.odin | |
| parent | 31aacd5bf435224c7d8f9b19359175d3e6d25660 (diff) | |
Overloaded `free`; 3 dotted ellipsisv0.0.6a
Diffstat (limited to 'core/_preload.odin')
| -rw-r--r-- | core/_preload.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/_preload.odin b/core/_preload.odin index 0bcb45b52..24d1fc21f 100644 --- a/core/_preload.odin +++ b/core/_preload.odin @@ -164,7 +164,7 @@ alloc_align :: proc(size, alignment: int) -> rawptr #inline { return a.procedure(a.data, Allocator_Mode.ALLOC, size, alignment, nil, 0, 0); } -free :: proc(ptr: rawptr) #inline { +free_ptr :: proc(ptr: rawptr) #inline { __check_context(); a := context.allocator; if ptr != nil { |