refactor: void return type for Collector.forward_children()
This commit is contained in:
parent
0ec1008fa3
commit
d4e951fded
14 changed files with 21 additions and 21 deletions
|
|
@ -27,9 +27,9 @@ namespace xo {
|
|||
return self.shallow_move(gc);
|
||||
}
|
||||
auto
|
||||
IGCObject_DList::forward_children(DList & self, obj<ACollector> gc) noexcept -> size_type
|
||||
IGCObject_DList::forward_children(DList & self, obj<ACollector> gc) noexcept -> void
|
||||
{
|
||||
return self.forward_children(gc);
|
||||
self.forward_children(gc);
|
||||
}
|
||||
|
||||
} /*namespace scm*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue