xo-simulator: bugfix: xo::ref::rp -> xo::rp

This commit is contained in:
Roland Conybeare 2024-09-14 14:05:16 -05:00
commit 3452e68e0c
3 changed files with 9 additions and 9 deletions

View file

@ -30,7 +30,7 @@ namespace xo {
Simulator * sim_ = nullptr;
}; /*RaiiDeliveryWork*/
ref::rp<Simulator>
rp<Simulator>
Simulator::make(utc_nanos t0) {
return new Simulator(t0);
} /*make*/

View file

@ -17,7 +17,7 @@ namespace xo {
{
os << "<SourceTimestamp";
os << xtag("t0", t0_);
os << xtag("src", ref::rp<ReactorSource>(src_));
os << xtag("src", rp<ReactorSource>(src_));
os << ">";
} /*display*/