diff -r f549fd9fbd8f -r 54565fd74e74 src/map.c --- a/src/map.c Wed Sep 18 00:02:18 2024 +0200 +++ b/src/map.c Sat Sep 28 15:47:28 2024 +0200 @@ -36,18 +36,18 @@ } static void *cx_empty_map_get( - __attribute__((__unused__)) CxMap const *map, + __attribute__((__unused__)) const CxMap *map, __attribute__((__unused__)) CxHashKey key ) { return NULL; } -static bool cx_empty_map_iter_valid(__attribute__((__unused__)) void const *iter) { +static bool cx_empty_map_iter_valid(__attribute__((__unused__)) const void *iter) { return false; } static CxIterator cx_empty_map_iterator( - struct cx_map_s const *map, + const struct cx_map_s *map, __attribute__((__unused__)) enum cx_map_iterator_type type ) { CxIterator iter = {0};