summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2020-06-03 09:49:03 +0200
committerStefan Behnel <stefan_ml@behnel.de>2020-06-03 09:52:44 +0200
commit57b4bdeb88cc18f8e2f89fe9a7cf506d4ee0f8db (patch)
tree52893305a9bd75cd96a4bcaea2e9c7e89ca9ccb1
parent12ab8bc0056a0e77ccc0756955eb1621fd3b35db (diff)
downloadcython-57b4bdeb88cc18f8e2f89fe9a7cf506d4ee0f8db.tar.gz
Remove a stray ")" that was accidentally introduced in GH-3591 and failed in MSVC with Py2.7.
-rw-r--r--Cython/Utility/Overflow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Cython/Utility/Overflow.c b/Cython/Utility/Overflow.c
index 9f3588074..cb569c89a 100644
--- a/Cython/Utility/Overflow.c
+++ b/Cython/Utility/Overflow.c
@@ -56,8 +56,8 @@ static int __Pyx_check_twos_complement(void) {
#if defined(__GNUC__)
# define __Pyx_is_constant(x) (__builtin_constant_p(x))
-#elif (defined(__has_builtin))
-# if __has_builtin(__builtin_constant_p))
+#elif defined(__has_builtin)
+# if __has_builtin(__builtin_constant_p)
# define __Pyx_is_constant(x) (__builtin_constant_p(x))
# endif
#else