xo-ordinaltree: GC test [wip]

This commit is contained in:
Roland Conybeare 2025-12-01 22:25:41 -05:00
commit b03f0be2f2
12 changed files with 274 additions and 53 deletions

View file

@ -57,6 +57,10 @@ namespace xo {
using super = std::allocator_traits<Allocator>;
using pointer = typename super::pointer;
using value_type = typename super::value_type;
using super::construct;
using super::destroy;
using super::allocate;
using super::deallocate;
// default: allocator A fallback to standard non-gc allocator behavior
template <typename A, typename = void>