We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05b6d12 commit 6accb7bCopy full SHA for 6accb7b
Include/pymacro.h
@@ -12,8 +12,10 @@
12
// static_assert is defined in glibc from version 2.16. Compiler support for
13
// the C11 _Static_assert keyword is in gcc >= 4.6.
14
15
+// MSVC makes static_assert a keyword, contrary to the C standard.
16
+
17
// In C++ 11 static_assert is a keyword, redefining is undefined behaviour.
-#if !defined(static_assert) \
18
+#if !defined(static_assert) && !defined(_MSC_VER) \
19
&& !(defined(__cplusplus) && __cplusplus >= 201103L)
20
# define static_assert _Static_assert
21
#endif
0 commit comments