Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b3cc7eb

Browse files
committed
Fix test for GCC 3.1+ but not strict ANSI C
2 parents b4f39ee + e0a2d12 commit b3cc7eb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Include/pymacro.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
3434
Requires at GCC 3.1+ */
3535
#if (defined(__GNUC__) && !defined(__STRICT_ANSI__) && \
36-
((__GNUC__ == 3) && (__GNU_MINOR__ >= 1)) || (__GNUC__ >= 4))
36+
(((__GNUC__ == 3) && (__GNU_MINOR__ >= 1)) || (__GNUC__ >= 4)))
3737
/* Two gcc extensions.
3838
&a[0] degrades to a pointer: a different type from an array */
3939
#define Py_ARRAY_LENGTH(array) \

0 commit comments

Comments
 (0)