detached head bullshit

This commit is contained in:
Edward R. Gonzalez 2024-05-15 03:43:33 -04:00
parent af757cfdaa
commit 48ee98f22d
2 changed files with 2 additions and 2 deletions

View File

@ -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 }

View File

@ -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