Skip to content

Commit 2c36f5d

Browse files
fix indent
Co-authored-by: Chris Eibl <[email protected]>
1 parent e3893ac commit 2c36f5d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Python/ceval_macros.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,13 @@
7979
#endif
8080

8181
#if _Py_TAIL_CALL_INTERP
82-
# if defined(__clang__) || defined(__GNUC__)
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-
# endif
82+
# if defined(__clang__) || defined(__GNUC__)
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 at least VS 2026 / PlatformToolset v145 for tail calling."
88+
# endif
8989

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

0 commit comments

Comments
 (0)