From bca732a132169b5d65f690562e8446f56bd33de0 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Tue, 24 Mar 2026 17:49:23 -0400 Subject: [PATCH] xo-object2: minor: default AGCObject for DBoolean.make() --- include/xo/object2/DBoolean.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/xo/object2/DBoolean.hpp b/include/xo/object2/DBoolean.hpp index ee9fe3b..72f5fad 100644 --- a/include/xo/object2/DBoolean.hpp +++ b/include/xo/object2/DBoolean.hpp @@ -16,13 +16,14 @@ namespace xo { struct DBoolean { using AAllocator = xo::mm::AAllocator; using ACollector = xo::mm::ACollector; + using AGCObject = xo::mm::AGCObject; using ppindentinfo = xo::print::ppindentinfo; using value_type = long; explicit DBoolean(bool x) : value_{x} {} /** will likely want this to default to ANumeric, once we have it **/ - template + template static obj box(obj mm, bool x); /** allocate boxed value @p x using memory from @p mm **/