From: Pablo Galindo Salgado Date: Tue, 10 May 2022 12:47:22 +0000 (+0100) Subject: gh-91731: Fix typo in pymacro.h (#92618) X-Git-Tag: v3.12.0a1~1600 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4e6da502f42e3cbdffbe850833d2b04996232f0d;p=thirdparty%2FPython%2Fcpython.git gh-91731: Fix typo in pymacro.h (#92618) * Fix typo in pymacro.h * Update Include/pymacro.h Co-authored-by: Victor Stinner Co-authored-by: Victor Stinner --- diff --git a/Include/pymacro.h b/Include/pymacro.h index 5037bbd01380..b959eeb3f58b 100644 --- a/Include/pymacro.h +++ b/Include/pymacro.h @@ -10,7 +10,7 @@ # define static_assert _Static_assert #endif -// static_assert is defined in GLIB from version 2.16. Before it requires +// static_assert is defined in glibc from version 2.16. Before it requires // compiler support (gcc >= 4.6) and is called _Static_assert. #if (defined(__GLIBC__) \ && (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ <= 16)) \