refactor: void return type for Collector.forward_children()

This commit is contained in:
Roland Conybeare 2026-04-04 16:54:46 -04:00
commit 6b8ac3dcd2
24 changed files with 42 additions and 34 deletions

View file

@ -27,9 +27,9 @@ namespace xo {
return self.shallow_move(gc);
}
auto
IGCObject_DVarRef::forward_children(DVarRef & self, obj<ACollector> gc) noexcept -> size_type
IGCObject_DVarRef::forward_children(DVarRef & self, obj<ACollector> gc) noexcept -> void
{
return self.forward_children(gc);
self.forward_children(gc);
}
} /*namespace scm*/