refactor: void return type for Collector.forward_children()

This commit is contained in:
Roland Conybeare 2026-04-04 16:54:46 -04:00
commit 8a9ddf4c55
18 changed files with 27 additions and 27 deletions

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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