* m4/assert_h.m4 (gl_ASSERT_H): Also break apart "#undef
static_assert" with /**/. Problem discovered with xlclang 16.1,
though it does not directly affect xlclang 16.1.
+2023-01-13 Paul Eggert <eggert@cs.ucla.edu>
+
+ assert-h: fix configure comment-out
+ * m4/assert_h.m4 (gl_ASSERT_H): Also break apart "#undef
+ static_assert" with /**/. Problem discovered with xlclang 16.1,
+ though it does not directly affect xlclang 16.1.
+
2023-01-11 Bruno Haible <bruno@clisp.org>
Fix link errors on Android 4.3.
/* Solaris 11.4 <assert.h> defines static_assert as a macro with 2 arguments.
We need it also to be invocable with a single argument. */
#if defined __sun && (__STDC_VERSION__ - 0 >= 201112L) && !defined __cplusplus
- #undef static_assert
+ #undef/**/static_assert
#define static_assert _Static_assert
#endif
#endif])