From a49e6f926b6e161795521d43a5117a947afe82d8 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Fri, 9 May 2008 07:30:59 +0200 Subject: [PATCH] fix for windows build --- Cython/Compiler/ExprNodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.26.2