diff options
author | David Robillard <d@drobilla.net> | 2022-10-20 21:34:17 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-10-20 21:34:17 -0400 |
commit | 60e86c7b2a05dab33fc66f4fa5b2954d79456cb6 (patch) | |
tree | d6f7be96c7d2ae85241e5b76a2ae5e62e2616df6 /include | |
parent | 5eb8ceef3fd92cc2dccd9efc1fd8f2baed0a492c (diff) | |
download | zix-60e86c7b2a05dab33fc66f4fa5b2954d79456cb6.tar.gz zix-60e86c7b2a05dab33fc66f4fa5b2954d79456cb6.tar.bz2 zix-60e86c7b2a05dab33fc66f4fa5b2954d79456cb6.zip |
Fix mismatched function types
Diffstat (limited to 'include')
-rw-r--r-- | include/zix/common.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/zix/common.h b/include/zix/common.h index 5a71be5..df49afe 100644 --- a/include/zix/common.h +++ b/include/zix/common.h @@ -53,9 +53,6 @@ typedef int (*ZixComparator)(const void* a, const void* b, const void* user_data); -/// Function for testing equality of two elements -typedef bool (*ZixEqualFunc)(const void* a, const void* b); - /// Function to destroy an element typedef void (*ZixDestroyFunc)(void* ptr, const void* user_data); |