From aa8777ee47f503eb90d4e2225274d0d20a9b39a3 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Thu, 26 Aug 2021 15:38:34 +0100 Subject: Change the implementation of `Arena` to use virtual memory, and remove the old gbArena code --- src/query_data.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/query_data.cpp') diff --git a/src/query_data.cpp b/src/query_data.cpp index ce42c00e2..71c21f2ba 100644 --- a/src/query_data.cpp +++ b/src/query_data.cpp @@ -252,10 +252,7 @@ void print_query_data_as_json(QueryValue *value, bool format = true, isize inden char const hex_table[] = "0123456789ABCDEF"; isize buf_len = name.len + extra + 2 + 1; - gbTempArenaMemory tmp = gb_temp_arena_memory_begin(&string_buffer_arena); - defer (gb_temp_arena_memory_end(tmp)); - - u8 *buf = gb_alloc_array(string_buffer_allocator, u8, buf_len); + u8 *buf = gb_alloc_array(temporary_allocator(), u8, buf_len); isize j = 0; -- cgit v1.2.3