Commit 39243779 authored by Segev Finer's avatar Segev Finer Committed by Victor Stinner

bpo-31018: Switch to #pragma pack from __declspec(align) (#2848)

parent b4c52966
......@@ -83,7 +83,7 @@ typedef struct
#ifdef __GNUC__
__attribute__((packed))
#elif defined(_MSC_VER)
_declspec(align(4))
#pragma pack(push, 4)
#endif
{
/* filename cannot be NULL: "<unknown>" is used if the Python frame
......@@ -91,6 +91,9 @@ _declspec(align(4))
PyObject *filename;
unsigned int lineno;
} frame_t;
#ifdef _MSC_VER
#pragma pack(pop)
#endif
typedef struct {
......
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