Tue, 10 Dec 2024 22:10:05 +0100
add fake doc to mute doxygen complaints
src/cx/array_list.h | file | annotate | diff | comparison | revisions |
--- a/src/cx/array_list.h Tue Dec 10 21:40:39 2024 +0100 +++ b/src/cx/array_list.h Tue Dec 10 22:10:05 2024 +0100 @@ -63,9 +63,9 @@ * @see cx_array_simple_insert_sorted() */ #define CX_ARRAY_DECLARE_SIZED(type, name, size_type) \ - type * name; \ - size_type name##_size; \ - size_type name##_capacity + type * name; \ + /** Array size. */ size_type name##_size; \ + /** Array capacity. */ size_type name##_capacity /** * Declares variables for an array that can be used with the convenience macros.