xo-interpreter2: scaffold repl + alloc measurement frameowkr

This commit is contained in:
Roland Conybeare 2026-02-02 21:55:34 -05:00
commit 39ce835b1b

View file

@ -38,6 +38,7 @@ namespace xo {
{}
/** (copy ctor not supported -- ownership is unique) **/
box(const box & other) = delete;
// --------------------------------
@ -73,8 +74,10 @@ namespace xo {
~box() {
auto p = this->data();
this->_drop();
::operator delete(p);
if (p) {
this->_drop();
::operator delete(p);
}
}
};
} /*namespace facet*/