# HG changeset patch # User Mike Becker # Date 1733865005 -3600 # Node ID 2d252c1c1d5da28bba16c7249a226f28cbfe3bcc # Parent 7650e722437e55c4dc9c3d85d88d650c5a483b49 add fake doc to mute doxygen complaints diff -r 7650e722437e -r 2d252c1c1d5d src/cx/array_list.h --- 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.