From e8d755252a42b291ceb27509719901e09f9c503a Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Thu, 4 Dec 2025 21:44:22 -0500 Subject: [PATCH] xo-alloc: provide default Object::display() method So we can remove from FallbackObjectInterface and IObject --- src/alloc/Object.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/alloc/Object.cpp b/src/alloc/Object.cpp index ab23b76a..b0be501b 100644 --- a/src/alloc/Object.cpp +++ b/src/alloc/Object.cpp @@ -32,6 +32,12 @@ namespace xo { return TaggedPtr::universal_null(); } + void + Object::display(std::ostream & os) const + { + os << ""; + } + IObject * Object::_forward(IObject * src, gc::IAlloc * gc)