From baaa59321674175e8b391caeacf54161c3e11975 Mon Sep 17 00:00:00 2001 From: Stefan Behnel <stefan_ml@behnel.de> Date: Sun, 2 Feb 2014 12:32:20 +0100 Subject: [PATCH] improve alignment in __pyx_CyFunctionObject struct --- Cython/Utility/CythonFunction.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cython/Utility/CythonFunction.c b/Cython/Utility/CythonFunction.c index 499edd628..2c227110b 100644 --- a/Cython/Utility/CythonFunction.c +++ b/Cython/Utility/CythonFunction.c @@ -21,7 +21,6 @@ typedef struct { PyCFunctionObject func; - int flags; PyObject *func_dict; PyObject *func_weakreflist; PyObject *func_name; @@ -35,6 +34,7 @@ typedef struct { /* Dynamic default args and annotations */ void *defaults; int defaults_pyobjects; + int flags; /* Defaults info */ PyObject *defaults_tuple; /* Const defaults tuple */ -- 2.30.9