refactor: void return type for Collector.forward_children()

This commit is contained in:
Roland Conybeare 2026-04-04 16:54:46 -04:00
commit d8585a7005
4 changed files with 6 additions and 6 deletions

View file

@ -57,7 +57,7 @@ namespace xo {
/** move instance using allocator **/
static Opaque shallow_move(DUniqueString & self, obj<ACollector> gc) noexcept;
/** during GC: forward immdiate children **/
static size_type forward_children(DUniqueString & self, obj<ACollector> gc) noexcept;
static void forward_children(DUniqueString & self, obj<ACollector> gc) noexcept;
///@}
};