summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2016-03-24 18:00:33 +0100
committerStefan Behnel <stefan_ml@behnel.de>2016-03-24 18:08:06 +0100
commit1c198a3733180d62b2da6405a3436d8e61a9aa02 (patch)
tree6eadfc9c37c5765cb89fd8a2e054bb2f3b20f719
parent50d181a442030b60f61ae0de6c9e99c8226b6c1f (diff)
downloadcython-1c198a3733180d62b2da6405a3436d8e61a9aa02.tar.gz
avoid alignment overhead in internal struct
-rw-r--r--Cython/Utility/ModuleSetupCode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Utility/ModuleSetupCode.c b/Cython/Utility/ModuleSetupCode.c
index a5576cef2..c4e10df88 100644
--- a/Cython/Utility/ModuleSetupCode.c
+++ b/Cython/Utility/ModuleSetupCode.c
@@ -341,8 +341,8 @@ PyEval_InitThreads();
/////////////// CodeObjectCache.proto ///////////////
typedef struct {
- int code_line;
PyCodeObject* code_object;
+ int code_line;
} __Pyx_CodeObjectCacheEntry;
struct __Pyx_CodeObjectCache {