Rename referenced macro to _bzHeapClear

This commit is contained in:
2023-11-15 14:30:31 +01:00
parent f8ed5f4664
commit c23bf3a48f

View File

@@ -15,7 +15,7 @@ i32 _bzHeapPushTmpIdx(void *heap);
#define bzHeapNew(T, n) (T *) ((T *)_bzHeapNew((n), sizeof(T), offsetof(T, weight)))
#define bzHeapFree(heap) _bzHeapFree((void *) (heap))
#define bzHeapClear(heap) _bzHeapReset((void *) (heap))
#define bzHeapClear(heap) _bzHeapClear((void *) (heap))
#define bzHeapSize(heap) _bzHeapSize((void *) (heap))
#define bzHeapIsEmpty(heap) _bzHeapIsEmpty((void *) (heap))