Skip to content

Commit e86c8b2

Browse files
Auto-format: cargo fmt --all
1 parent 40fc922 commit e86c8b2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

crates/vm/src/gc_state.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,8 @@ impl GcState {
259259

260260
let (list_lock, count) = if obj_gen <= 2 {
261261
(
262-
&self.generation_lists[obj_gen as usize] as &PyRwLock<LinkedList<GcLink, PyObject>>,
262+
&self.generation_lists[obj_gen as usize]
263+
as &PyRwLock<LinkedList<GcLink, PyObject>>,
263264
&self.generations[obj_gen as usize].count,
264265
)
265266
} else if obj_gen == GC_PERMANENT {

0 commit comments

Comments
 (0)