From 6a85e7e0edd703894c33bd7949a774d500de9cb6 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Fri, 13 Feb 2026 15:15:39 -0500 Subject: [PATCH] xo-object2: DList: streamline forward_children() --- src/object2/DList.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/object2/DList.cpp b/src/object2/DList.cpp index 73c8cd0..0be056d 100644 --- a/src/object2/DList.cpp +++ b/src/object2/DList.cpp @@ -172,10 +172,12 @@ namespace xo { { //scope log(XO_DEBUG(true)); - gc.forward_inplace(head_.iface(), (void **)&(head_.data_)); + gc.forward_inplace(&head_); + //gc.forward_inplace(head_.iface(), (void **)&(head_.data_)); - auto iface = xo::facet::impl_for(); - gc.forward_inplace(&iface, (void **)(&rest_)); + gc.forward_inplace(&rest_); + //auto iface = xo::facet::impl_for(); + //gc.forward_inplace(&iface, (void **)(&rest_)); return this->shallow_size(); }