xo-object: streamline DFloat construction, like w/ DList/DInteger

This commit is contained in:
Roland Conybeare 2026-01-09 18:09:50 -05:00
commit ce32d59bc3
3 changed files with 14 additions and 6 deletions

View file

@ -12,8 +12,7 @@ namespace xo {
namespace scm {
DFloat *
DFloat::make(obj<AAllocator> mm,
double x)
DFloat::_box(obj<AAllocator> mm, double x)
{
void * mem = mm.alloc(typeseq::id<DFloat>(),
sizeof(DFloat));