Commit b1871496 authored by Mathieu Virbel's avatar Mathieu Virbel

fix compilation issues on windows (got this error from 0.16 already)

parent ded57336
......@@ -438,7 +438,10 @@ static PyObject * __Pyx_CyFunction_Call(PyObject *func, PyObject *arg, PyObject
return NULL;
}
#else
#define __Pyx_CyFunction_Call PyCFunction_Call
static PyObject * __PyCFunction_Call(PyObject *func, PyObject *arg, PyObject *kw) {
return PyCFunction_Call(func, arg, kw);
}
#define __Pyx_CyFunction_Call __PyCFunction_Call
#endif
static PyTypeObject __pyx_CyFunctionType_type = {
......
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