We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 684baa1 commit 6043270Copy full SHA for 6043270
simde/simde-detect-clang.h
@@ -60,7 +60,9 @@
60
*/
61
62
#if defined(__clang__) && !defined(SIMDE_DETECT_CLANG_VERSION)
63
-# if __has_attribute(nouwtable) // no new warnings in 16.0
+# if __has_attribute(unsafe_buffer_usage) // no new warnings in 17.0
64
+# define SIMDE_DETECT_CLANG_VERSION 170000
65
+# elif __has_attribute(nouwtable) // no new warnings in 16.0
66
# define SIMDE_DETECT_CLANG_VERSION 160000
67
# elif __has_warning("-Warray-parameter")
68
# define SIMDE_DETECT_CLANG_VERSION 150000
0 commit comments