Commit e501c41a authored by Stefan Behnel's avatar Stefan Behnel

work around bug in gcc 4.2.4 when compiling with '-O0' - any higher opt...

work around bug in gcc 4.2.4 when compiling with '-O0' - any higher opt setting should inline this function anyway
parent 7bbc99cb
......@@ -438,7 +438,7 @@ static PyObject * __Pyx_CyFunction_Call(PyObject *func, PyObject *arg, PyObject
return NULL;
}
#else
static CYTHON_INLINE PyObject * __Pyx_CyFunction_Call(PyObject *func, PyObject *arg, PyObject *kw) {
static PyObject * __Pyx_CyFunction_Call(PyObject *func, PyObject *arg, PyObject *kw) {
return PyCFunction_Call(func, arg, kw);
}
#endif
......
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