We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4fa2e4 commit 96ff7b8Copy full SHA for 96ff7b8
Python/ceval_macros.h
@@ -83,10 +83,9 @@
83
# if !_Py__has_attribute(preserve_none) || !_Py__has_attribute(musttail)
84
# error "This compiler does not have support for efficient tail calling."
85
# endif
86
+# elif defined(_MSC_VER) && (_MSC_VER < 1950)
87
+# error "You need atleast VS 2026 / PlatformToolset v145 for tail calling."
88
-#elif defined(_MSC_VER) && (_MSC_VER < 1950)
-# error "You need atleast VS 2026 / PlatformToolset v145 for tail calling."
89
-#endif
90
91
// Note: [[clang::musttail]] works for GCC 15, but not __attribute__((musttail)) at the moment.
92
# define Py_MUSTTAIL [[clang::musttail]]
0 commit comments