some progress on the arena allocator

This commit is contained in:
2025-11-18 21:54:38 +01:00
parent 78cc6c5cae
commit d4451196f6
4 changed files with 94 additions and 7 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ Test(borrow_allocator, test) {
*ptr = EXPECT;
cr_assert_eq(*ptr, EXPECT);
cr_assert_eq(1, borrow_allocator_count_allocations(&balloc));
borrow_allocator_reset(&balloc);
borrow_allocator_free_all(&balloc);
cr_assert_eq(0, borrow_allocator_count_allocations(&balloc));
borrow_allocator_assert_all_freed(&balloc);
}