Skip to content

Commit 96ff7b8

Browse files
committed
commit
1 parent d4fa2e4 commit 96ff7b8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Python/ceval_macros.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,9 @@
8383
# if !_Py__has_attribute(preserve_none) || !_Py__has_attribute(musttail)
8484
# error "This compiler does not have support for efficient tail calling."
8585
# endif
86+
# elif defined(_MSC_VER) && (_MSC_VER < 1950)
87+
# error "You need atleast VS 2026 / PlatformToolset v145 for tail calling."
8688
# endif
87-
#elif defined(_MSC_VER) && (_MSC_VER < 1950)
88-
# error "You need atleast VS 2026 / PlatformToolset v145 for tail calling."
89-
#endif
9089

9190
// Note: [[clang::musttail]] works for GCC 15, but not __attribute__((musttail)) at the moment.
9291
# define Py_MUSTTAIL [[clang::musttail]]

0 commit comments

Comments
 (0)