From 48ee98f22d0eb346937ca30c9791840318e024f3 Mon Sep 17 00:00:00 2001 From: Ed_ Date: Wed, 15 May 2024 03:43:33 -0400 Subject: [PATCH] detached head bullshit --- code/grime_stack.odin | 2 +- code/grime_virtual_arena.odin | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/grime_stack.odin b/code/grime_stack.odin index 88f79ac..1088941 100644 --- a/code/grime_stack.odin +++ b/code/grime_stack.odin @@ -185,7 +185,7 @@ stack_allocator_proc :: proc( alignment : int, old_memory : rawptr, old_size : int, - // location : SourceCodeLocation = #caller_location + location : SourceCodeLocation = #caller_location ) -> ([]byte, AllocatorError) { stack := StackAllocator { cast( ^StackAllocatorBase) allocator_data } diff --git a/code/grime_virtual_arena.odin b/code/grime_virtual_arena.odin index 3ae40bc..d942480 100644 --- a/code/grime_virtual_arena.odin +++ b/code/grime_virtual_arena.odin @@ -196,7 +196,7 @@ varena_allocator_proc :: proc( alignment : int, old_memory : rawptr, old_size : int, - // location : SourceCodeLocation = #caller_location + location : SourceCodeLocation = #caller_location ) -> ( data : []byte, alloc_error : AllocatorError) { arena := cast( ^VArena) allocator_data