work around bug in gcc 4.2.4 when compiling with '-O0' - any higher opt setting shoul...
authorStefan Behnel <stefan_ml@behnel.de>
Sun, 8 Jul 2012 18:17:00 +0000 (20:17 +0200)
committerStefan Behnel <stefan_ml@behnel.de>
Sun, 8 Jul 2012 18:17:00 +0000 (20:17 +0200)
Cython/Utility/CythonFunction.c

index fcb39fe..4098194 100644 (file)
@@ -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