diff options
author | David Robillard <d@drobilla.net> | 2021-09-11 00:33:05 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-09-11 00:33:05 -0400 |
commit | cbc57827e709105efc905cda9eae45cd3fd4599d (patch) | |
tree | 8136858400ed22671766fe81db136d4f2842e026 /include | |
parent | 5ac34d2fc4f0249500efc5f2c443265353da63ba (diff) | |
download | zix-cbc57827e709105efc905cda9eae45cd3fd4599d.tar.gz zix-cbc57827e709105efc905cda9eae45cd3fd4599d.tar.bz2 zix-cbc57827e709105efc905cda9eae45cd3fd4599d.zip |
Fix zix_btree_free() nullable annotation
Diffstat (limited to 'include')
-rw-r--r-- | include/zix/btree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/zix/btree.h b/include/zix/btree.h index 82b017a..9a661d6 100644 --- a/include/zix/btree.h +++ b/include/zix/btree.h @@ -88,7 +88,7 @@ zix_btree_new(const ZixAllocator* ZIX_NULLABLE allocator, */ ZIX_API void -zix_btree_free(ZixBTree* ZIX_NONNULL t, +zix_btree_free(ZixBTree* ZIX_NULLABLE t, ZixDestroyFunc ZIX_NULLABLE destroy, const void* ZIX_NULLABLE destroy_user_data); |