From 6546af31ee8d36d6d240f3ce434fbd13a2d7e53b Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Tue, 10 May 2022 06:24:11 -0700 Subject: gh-91731: Fix typo in pymacro.h (GH-92618) * Fix typo in pymacro.h * Update Include/pymacro.h Co-authored-by: Victor Stinner Co-authored-by: Victor Stinner (cherry picked from commit 4e6da502f42e3cbdffbe850833d2b04996232f0d) Co-authored-by: Pablo Galindo Salgado --- Include/pymacro.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/pymacro.h b/Include/pymacro.h index 5037bbd..b959eeb 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)) \ -- cgit v0.12