This repository was archived by the owner on Feb 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -151,26 +151,26 @@ typedef struct _cstack {
151
151
int nesting_level;
152
152
PyThreadState *tstate;
153
153
#ifdef SLP_SEH32
154
- /* SEH handler on Win32
155
- * The correct type is DWORD, but we do not want to include <windows.h>.
156
- * Instead we use a compile time assertion to ensure, that we use an
157
- * equivalent type.
158
- */
154
+ /* SEH handler on Win32
155
+ * The correct type is DWORD, but we do not want to include <windows.h>.
156
+ * Instead we use a compile time assertion to ensure, that we use an
157
+ * equivalent type.
158
+ */
159
159
unsigned long exception_list;
160
160
#endif
161
161
/* The end-address (sic!) of the stack stored in the cstack.
162
162
*/
163
163
intptr_t *startaddr;
164
164
intptr_t stack[
165
165
#if defined(_WINDOWS_) && defined(SLP_SEH32)
166
- /* Assert the equivalence of DWORD and unsigned long. If <windows.h>
167
- * is included, _WINDOWS_ is defined.
168
- * Py_BUILD_ASSERT_EXPR needs an expression and this is the only one.
169
- */
170
- Py_BUILD_ASSERT_EXPR (sizeof (unsigned long ) == sizeof(DWORD)) +
171
- Py_BUILD_ASSERT_EXPR(((DWORD)-1) > 0) + /* signedness */
166
+ /* Assert the equivalence of DWORD and unsigned long. If <windows.h>
167
+ * is included, _WINDOWS_ is defined.
168
+ * Py_BUILD_ASSERT_EXPR needs an expression and this is the only one.
169
+ */
170
+ Py_BUILD_ASSERT_EXPR (sizeof (unsigned long ) == sizeof(DWORD)) +
171
+ Py_BUILD_ASSERT_EXPR(((DWORD)-1) > 0) + /* signedness */
172
172
#endif
173
- 1 ];
173
+ 1 ];
174
174
} PyCStackObject;
175
175
176
176
You can’t perform that action at this time.
0 commit comments