refactor: make shallow_move() available from AGCObjectVisitor

This commit is contained in:
Roland Conybeare 2026-04-06 00:11:08 -04:00
commit 4bca2b7a23
5 changed files with 5 additions and 5 deletions

View file

@ -51,7 +51,7 @@ namespace xo {
// const methods
// non-const methods
/** move instance using allocator **/
/** move instance using collector **/
static Opaque shallow_move(DArrayType & self, obj<ACollector> gc) noexcept;
/** Invoke fn.visit_child(iface,data) for each child GCObject pointer.
Context: provides address of data pointer so it can be updated in place

View file

@ -51,7 +51,7 @@ namespace xo {
// const methods
// non-const methods
/** move instance using allocator **/
/** move instance using collector **/
static Opaque shallow_move(DAtomicType & self, obj<ACollector> gc) noexcept;
/** Invoke fn.visit_child(iface,data) for each child GCObject pointer.
Context: provides address of data pointer so it can be updated in place

View file

@ -51,7 +51,7 @@ namespace xo {
// const methods
// non-const methods
/** move instance using allocator **/
/** move instance using collector **/
static Opaque shallow_move(DFunctionType & self, obj<ACollector> gc) noexcept;
/** Invoke fn.visit_child(iface,data) for each child GCObject pointer.
Context: provides address of data pointer so it can be updated in place

View file

@ -51,7 +51,7 @@ namespace xo {
// const methods
// non-const methods
/** move instance using allocator **/
/** move instance using collector **/
static Opaque shallow_move(DListType & self, obj<ACollector> gc) noexcept;
/** Invoke fn.visit_child(iface,data) for each child GCObject pointer.
Context: provides address of data pointer so it can be updated in place

View file

@ -51,7 +51,7 @@ namespace xo {
// const methods
// non-const methods
/** move instance using allocator **/
/** move instance using collector **/
static Opaque shallow_move(DTypeVarRef & self, obj<ACollector> gc) noexcept;
/** Invoke fn.visit_child(iface,data) for each child GCObject pointer.
Context: provides address of data pointer so it can be updated in place