[debug/trace] sync allocator with core:mem

This commit is contained in:
A1029384756
2026-08-03 10:09:39 -04:00
parent dd796f5574
commit 1ac0b9bcdc

View File

@@ -97,6 +97,8 @@ tracking_allocator_init :: proc(
tracking_allocator_destroy :: proc(t: ^Tracking_Allocator) {
delete(t.allocation_map)
delete(t.bad_free_array)
t.allocation_map = {}
t.bad_free_array = {}
}
@(no_sanitize_address)