Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4c5296 commit 3924377Copy full SHA for 3924377
1 file changed
Modules/_tracemalloc.c
@@ -83,14 +83,17 @@ typedef struct
83
#ifdef __GNUC__
84
__attribute__((packed))
85
#elif defined(_MSC_VER)
86
-_declspec(align(4))
+#pragma pack(push, 4)
87
#endif
88
{
89
/* filename cannot be NULL: "<unknown>" is used if the Python frame
90
filename is NULL */
91
PyObject *filename;
92
unsigned int lineno;
93
} frame_t;
94
+#ifdef _MSC_VER
95
+#pragma pack(pop)
96
+#endif
97
98
99
typedef struct {
0 commit comments