fix free block check and remove unused free_size field

This commit is contained in:
Nikita Smith
2025-09-08 16:07:31 -07:00
committed by Ryan Fleury
parent 8f749f4239
commit 082f6cf6fd
2 changed files with 13 additions and 16 deletions
-1
View File
@@ -42,7 +42,6 @@ struct Arena
char *allocation_site_file;
int allocation_site_line;
#if ARENA_FREE_LIST
U64 free_size;
Arena *free_last;
#endif
};