Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79afefd commit cfe9fccCopy full SHA for cfe9fcc
1 file changed
numpy/core/test_c99complex.c
@@ -99,11 +99,16 @@
99
100
#define RETTYPE PyObject*
101
102
+/* MSVC #defines copysign as _copysign. This conflicts with our prefixing */
103
+#ifdef _MSC_VER
104
+#undef copysign
105
+#endif
106
+
107
#define INIT_FUNC() \
108
PyObject *ret = PyList_New(0); \
109
PyObject *entry; \
110
const size_t bsize = 4096; \
- char buf[bsize]; \
111
+ char buf[4096]; \
112
int used_size
113
114
#define TEST_FAILED_INT(printexpr) \
0 commit comments