This shouldn’t affect anything; it’s merely a refactoring.
* lib/verify.h (_GL_HAVE__STATIC_ASSERT1): Require
__STDC_VERSION__ to be at least 202311, instead of at least
202000. The latter number was put in in 2019 because we didn’t
yet know C23’s __STDC_VERSION__ value.
+2022-12-07 Paul Eggert <eggert@cs.ucla.edu>
+
+ verify: update __STDC_VERSION__ as per C23
+ This shouldn’t affect anything; it’s merely a refactoring.
+ * lib/verify.h (_GL_HAVE__STATIC_ASSERT1): Require
+ __STDC_VERSION__ to be at least 202311, instead of at least
+ 202000. The latter number was put in in 2019 because we didn’t
+ yet know C23’s __STDC_VERSION__ value.
+
2022-12-06 Paul Eggert <eggert@cs.ucla.edu>
fts: fix race + mishandling of fstatat failure
&& (4 < __GNUC__ + (6 <= __GNUC_MINOR__) || 5 <= __clang_major__)))
# define _GL_HAVE__STATIC_ASSERT 1
# endif
-# if (202000 <= __STDC_VERSION__ \
+# if (202311 <= __STDC_VERSION__ \
|| (!defined __STRICT_ANSI__ && 9 <= __GNUC__))
# define _GL_HAVE__STATIC_ASSERT1 1
# endif