Minor fix to doc comment about priority heap
All checks were successful
Run Unit Tests / build-and-run-unit-tests (push) Successful in 3s
All checks were successful
Run Unit Tests / build-and-run-unit-tests (push) Successful in 3s
This commit is contained in:
parent
fbe62ba5b2
commit
d815f67b2d
1 changed files with 1 additions and 2 deletions
|
@ -38,8 +38,7 @@ typedef struct SDArchiverPHeap {
|
|||
SDArchiverPHeap *simple_archiver_priority_heap_init(void);
|
||||
void simple_archiver_priority_heap_free(SDArchiverPHeap **priority_heap);
|
||||
|
||||
/// If data_cleanup_fn is NULL, then "free()" is used on data when popped or
|
||||
/// freed.
|
||||
/// If data_cleanup_fn is NULL, then "free()" is used on data when freed.
|
||||
void simple_archiver_priority_heap_insert(SDArchiverPHeap **priority_heap,
|
||||
long long priority, void *data,
|
||||
void (*data_cleanup_fn)(void *));
|
||||
|
|
Loading…
Reference in a new issue