add missing documentation of CX_WORDSIZE

Fri, 20 Dec 2024 16:53:46 +0100

author
Mike Becker <universe@uap-core.de>
date
Fri, 20 Dec 2024 16:53:46 +0100
changeset 1034
424b5b74a68f
parent 1033
e3009345984b
child 1035
9b6ded88d7a0

add missing documentation of CX_WORDSIZE

src/cx/common.h file | annotate | diff | comparison | revisions
--- a/src/cx/common.h	Fri Dec 20 16:51:01 2024 +0100
+++ b/src/cx/common.h	Fri Dec 20 16:53:46 2024 +0100
@@ -103,8 +103,14 @@
 // ---------------------------------------------------------------------------
 
 #if INTPTR_MAX == INT64_MAX
+/**
+ * The address width in bits on this platform.
+ */
 #define CX_WORDSIZE 64
 #elif INTPTR_MAX == INT32_MAX
+/**
+ * The address width in bits on this platform.
+ */
 #define CX_WORDSIZE 32
 #else
 #error Unknown pointer size or missing size macros!

mercurial