# HG changeset patch # User Mike Becker # Date 1735996671 -3600 # Node ID 128324af516473b9a8f04d18f047a139b8f73d71 # Parent 4c6ea8a10acd52ae50794a1c95287d7c3c033f5d don't document constness of arguments in macros relates to #548 diff -r 4c6ea8a10acd -r 128324af5164 src/cx/allocator.h --- a/src/cx/allocator.h Sat Jan 04 13:40:34 2025 +0100 +++ b/src/cx/allocator.h Sat Jan 04 14:17:51 2025 +0100 @@ -326,7 +326,7 @@ * @par Error handling * @c errno will be set, if the underlying realloc function does so. * - * @param allocator (@c const @c CxAllocator*) the allocator + * @param allocator (@c CxAllocator*) the allocator * @param mem (@c void**) pointer to the pointer to allocated block * @param n (@c size_t) the new size in bytes * @retval zero success @@ -375,7 +375,7 @@ * @c errno will be set, if the underlying realloc function does so or the * multiplication of @p nmemb and @p size overflows. * - * @param allocator (@c const @c CxAllocator*) the allocator + * @param allocator (@c CxAllocator*) the allocator * @param mem (@c void**) pointer to the pointer to allocated block * @param nmemb (@c size_t) the number of elements * @param size (@c size_t) the size of each element