diff -r 81c4f73236a4 -r c3f2f16fa4b8 ucx/cx/common.h
--- a/ucx/cx/common.h Sat Oct 04 14:54:25 2025 +0200
+++ b/ucx/cx/common.h Sun Oct 19 21:20:08 2025 +0200
@@ -49,7 +49,7 @@
* https://uap-core.de/hg/ucx
*
*
- * LICENCE
+ * LICENSE
*
* Copyright 2021 Mike Becker, Olaf Wintermann All rights reserved.
*
@@ -131,6 +131,11 @@
#endif
/**
+ * Inform the compiler that falling through a switch case is intentional.
+ */
+#define cx_attr_fallthrough __attribute__((__fallthrough__))
+
+/**
* All pointer arguments must be non-NULL.
*/
#define cx_attr_nonnull __attribute__((__nonnull__))
@@ -184,7 +189,7 @@
*/
#define cx_attr_cstr_arg(idx)
/**
- * No support for access attribute in clang.
+ * No support for the access attribute in clang.
*/
#define cx_attr_access(mode, ...)
#else