refactor: void return type for Collector.forward_children()

This commit is contained in:
Roland Conybeare 2026-04-04 16:54:46 -04:00
commit d4e951fded
14 changed files with 21 additions and 21 deletions

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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