Kaydet (Commit) 83371f4f authored tarafından Niklas Fiekas's avatar Niklas Fiekas Kaydeden (comit) Benjamin Peterson

bpo-29936: fix typo __GNU*C*_MINOR__ (#878)

üst 794623bd
...@@ -53,7 +53,7 @@ ...@@ -53,7 +53,7 @@
Requires at GCC 3.1+ */ Requires at GCC 3.1+ */
#if (defined(__GNUC__) && !defined(__STRICT_ANSI__) && \ #if (defined(__GNUC__) && !defined(__STRICT_ANSI__) && \
(((__GNUC__ == 3) && (__GNU_MINOR__ >= 1)) || (__GNUC__ >= 4))) (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 1)) || (__GNUC__ >= 4)))
/* Two gcc extensions. /* Two gcc extensions.
&a[0] degrades to a pointer: a different type from an array */ &a[0] degrades to a pointer: a different type from an array */
#define Py_ARRAY_LENGTH(array) \ #define Py_ARRAY_LENGTH(array) \
......
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