Rename os.default_allocator to os.heap_allocator

This commit is contained in:
gingerBill
2018-06-03 16:40:58 +01:00
parent 360a74e2fe
commit e46662a546
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -276,7 +276,7 @@ __init_context_from_ptr :: proc "contextless" (c: ^Context, other: ^Context) {
__init_context :: proc "contextless" (c: ^Context) {
if c == nil do return;
c.allocator = os.default_allocator();
c.allocator = os.heap_allocator();
c.thread_id = os.current_thread_id();
}