diff options
author | Joshua Root <jmr@macports.org> | 2021-01-04 10:36:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-04 10:36:58 (GMT) |
commit | df21f502fdccec234282bf0a211af979fd23def4 (patch) | |
tree | 60af144fe8a558722a779bc8ed4ef06ca0dab876 /Misc | |
parent | b6fc0c406e6b4b86f59b1390142f35da0e364927 (diff) | |
download | cpython-df21f502fdccec234282bf0a211af979fd23def4.zip cpython-df21f502fdccec234282bf0a211af979fd23def4.tar.gz cpython-df21f502fdccec234282bf0a211af979fd23def4.tar.bz2 |
bpo-42692: fix __builtin_available check on older compilers (GH-23873)
A compiler that doesn't define `__has_builtin` will error out when it is
used on the same line as the check for it.
Automerge-Triggered-By: GH:ronaldoussoren
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Build/2021-01-04-05-07-30.bpo-42692.OO11SN.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2021-01-04-05-07-30.bpo-42692.OO11SN.rst b/Misc/NEWS.d/next/Build/2021-01-04-05-07-30.bpo-42692.OO11SN.rst new file mode 100644 index 0000000..91582b9 --- /dev/null +++ b/Misc/NEWS.d/next/Build/2021-01-04-05-07-30.bpo-42692.OO11SN.rst @@ -0,0 +1 @@ +Fix __builtin_available check on older compilers. Patch by Joshua Root. |