xo-alloc: mutation log tracking in working state + unit test

This commit is contained in:
Roland Conybeare 2025-08-05 11:08:36 -05:00
commit 5d2fcf6498
25 changed files with 735 additions and 185 deletions

View file

@ -31,14 +31,12 @@ namespace xo {
}
gp<String>
String::from(gp<Object> x)
{
String::from(gp<Object> x) {
return dynamic_cast<String*>(x.ptr());
}
gp<String>
String::copy(const char * s)
{
String::copy(const char * s) {
return copy(Object::mm, s);
}