mirror of
https://github.com/python/cpython
synced 2026-09-26 16:21:04 +03:00
The designated initializer syntax in static inline functions in pycore_backoff.h causes problems for C++ or MSVC users who aren't yet using C++20. While internal, pycore_backoff.h is included (indirectly, via pycore_code.h) by some key 3rd party software that does so for speed.
5 lines
310 B
ReStructuredText
5 lines
310 B
ReStructuredText
Don't use designated initializer syntax in inline functions in internal
|
|
headers. They cause problems for C++ or MSVC users who aren't yet using the
|
|
latest C++ standard (C++20). While internal, pycore_backoff.h, is included
|
|
(indirectly, via pycore_code.h) by some key 3rd party software that does so
|
|
for speed.
|