Use asserts in array

This commit is contained in:
2025-05-05 20:06:58 +01:00
parent cac66b9dbb
commit 6c8434a530
13 changed files with 264 additions and 734 deletions

View File

@@ -1,11 +1,7 @@
assert(allocator != NULL);
u64 allocation_size = sizeof({ArrayType}) + item_size * capacity;
{ArrayType} *array = NULL;
if (!allocator) {{
goto RETURN_GENERIC_ARRAY_ALLOC;
}}
array = wapp_mem_allocator_alloc(allocator, allocation_size);
{ArrayType} *array = wapp_mem_allocator_alloc(allocator, allocation_size);
if (!array) {{
goto RETURN_GENERIC_ARRAY_ALLOC;
}}