Skip to content

Commit 3ee8db9

Browse files
committed
Remove old void cast
1 parent d89ecdc commit 3ee8db9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/gc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1320,7 +1320,7 @@ handle_resurrected_objects(PyGC_Head *unreachable, PyGC_Head* still_unreachable,
13201320
// have the PREV_MARK_COLLECTING set, but the objects are going to be
13211321
// removed so we can skip the expense of clearing the flag.
13221322
PyGC_Head* resurrected = unreachable;
1323-
(void)deduce_unreachable(resurrected, still_unreachable);
1323+
deduce_unreachable(resurrected, still_unreachable);
13241324
clear_unreachable_mask(still_unreachable);
13251325

13261326
// Move the resurrected objects to the old generation for future collection.

0 commit comments

Comments
 (0)