diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2022-05-10 12:47:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-10 12:47:22 (GMT) |
commit | 4e6da502f42e3cbdffbe850833d2b04996232f0d (patch) | |
tree | af55af80ad0bd1c92e7df1f5e5c3de9704111dac /Include/pymacro.h | |
parent | 7c6b7ade8df35355484d3944779fe35dcc560aab (diff) | |
download | cpython-4e6da502f42e3cbdffbe850833d2b04996232f0d.zip cpython-4e6da502f42e3cbdffbe850833d2b04996232f0d.tar.gz cpython-4e6da502f42e3cbdffbe850833d2b04996232f0d.tar.bz2 |
gh-91731: Fix typo in pymacro.h (#92618)
* Fix typo in pymacro.h
* Update Include/pymacro.h
Co-authored-by: Victor Stinner <vstinner@python.org>
Co-authored-by: Victor Stinner <vstinner@python.org>
Diffstat (limited to 'Include/pymacro.h')
-rw-r--r-- | Include/pymacro.h | 2 |
1 files changed, 1 insertions, 1 deletions
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)) \ |