mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
Change GC refcount to Py_ssize_t.
This commit is contained in:
parent
056a69cba6
commit
6db0e00d57
2 changed files with 2 additions and 2 deletions
|
@ -250,7 +250,7 @@ typedef union _gc_head {
|
|||
struct {
|
||||
union _gc_head *gc_next;
|
||||
union _gc_head *gc_prev;
|
||||
int gc_refs;
|
||||
Py_ssize_t gc_refs;
|
||||
} gc;
|
||||
long double dummy; /* force worst-case alignment */
|
||||
} PyGC_Head;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue