We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40fc922 commit e86c8b2Copy full SHA for e86c8b2
1 file changed
crates/vm/src/gc_state.rs
@@ -259,7 +259,8 @@ impl GcState {
259
260
let (list_lock, count) = if obj_gen <= 2 {
261
(
262
- &self.generation_lists[obj_gen as usize] as &PyRwLock<LinkedList<GcLink, PyObject>>,
+ &self.generation_lists[obj_gen as usize]
263
+ as &PyRwLock<LinkedList<GcLink, PyObject>>,
264
&self.generations[obj_gen as usize].count,
265
)
266
} else if obj_gen == GC_PERMANENT {
0 commit comments