From: Stefan Behnel Date: Fri, 9 May 2008 05:30:59 +0000 (+0200) Subject: fix for windows build X-Git-Tag: 0.9.8rc1~55 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a49e6f926b6e161795521d43a5117a947afe82d8;p=cython.git fix for windows build --- diff --git a/Cython/Compiler/ExprNodes.py b/Cython/Compiler/ExprNodes.py index 25140ecb..ec57a0e2 100644 --- a/Cython/Compiler/ExprNodes.py +++ b/Cython/Compiler/ExprNodes.py @@ -4124,7 +4124,7 @@ static void __Pyx_CppExn2PyErr() { append_utility_code = [ """ -static inline PyObject* __Pyx_PyObject_Append(PyObject* L, PyObject* x) { +static INLINE PyObject* __Pyx_PyObject_Append(PyObject* L, PyObject* x) { if (likely(PyList_CheckExact(L))) { if (PyList_Append(L, x) < 0) return NULL; Py_INCREF(Py_None);