Skip to content

Commit 8fa4274

Browse files
committed
Fix MSVC compile error: replace _Py_atomic_int with int
1 parent 1664301 commit 8fa4274

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Include/internal/pycore_crossinterp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ struct _xidata {
8888
// to PyMem_RawFree (the default if not explicitly set to NULL).
8989
// The call will happen with the original interpreter activated.
9090
xid_freefunc free;
91-
_Py_atomic_int status; /* one of _PyXIData_status_t */
91+
int status; /* one of _PyXIData_status_t */
9292
struct _xidata *xid_next;
9393
struct _xidata *xid_prev;
9494
};

0 commit comments

Comments
 (0)