Commit 1c198a37 authored by Stefan Behnel's avatar Stefan Behnel

avoid alignment overhead in internal struct

parent 50d181a4
...@@ -341,8 +341,8 @@ PyEval_InitThreads(); ...@@ -341,8 +341,8 @@ PyEval_InitThreads();
/////////////// CodeObjectCache.proto /////////////// /////////////// CodeObjectCache.proto ///////////////
typedef struct { typedef struct {
int code_line;
PyCodeObject* code_object; PyCodeObject* code_object;
int code_line;
} __Pyx_CodeObjectCacheEntry; } __Pyx_CodeObjectCacheEntry;
struct __Pyx_CodeObjectCache { struct __Pyx_CodeObjectCache {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment