Commit 57b4bdeb authored by Stefan Behnel's avatar Stefan Behnel

Remove a stray ")" that was accidentally introduced in GH-3591 and failed in MSVC with Py2.7.

parent 12ab8bc0
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment