xo-alloc: provide default Object::display() method

So we can remove from FallbackObjectInterface and IObject
This commit is contained in:
Roland Conybeare 2025-12-04 21:44:22 -05:00
commit e8d755252a

View file

@ -32,6 +32,12 @@ namespace xo {
return TaggedPtr::universal_null();
}
void
Object::display(std::ostream & os) const
{
os << "<Object>";
}
IObject *
Object::_forward(IObject * src,
gc::IAlloc * gc)