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

Skip to content

Commit e0a2d12

Browse files
committed
Fix test for GCC 3.1+ but not strict ANSI C
1 parent 91e8b81 commit e0a2d12

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)