# HG changeset patch # User Mike Becker # Date 1764339379 -3600 # Node ID 0cc05a5c053d4d2243367a10fc182e2ba112d5d9 # Parent 39b9dd939ac81c08dba900f14a193c2351be5f40 add missing docstring for CX_INLINE diff -r 39b9dd939ac8 -r 0cc05a5c053d src/cx/common.h --- a/src/cx/common.h Fri Nov 28 15:09:57 2025 +0100 +++ b/src/cx/common.h Fri Nov 28 15:16:19 2025 +0100 @@ -284,6 +284,9 @@ */ #define CX_INLINE __attribute__((always_inline)) static inline #else +/** + * Declares a function to be inlined. + */ #define CX_INLINE static inline #endif /**