xo-gc stack: refactor + streamline.

Retiring unused Collector typealiases.
Fix #include topology.
Fix/improve write barrier setup.
This commit is contained in:
Roland Conybeare 2026-05-02 13:49:29 -04:00
commit 2713050d84
3 changed files with 8 additions and 2 deletions

View file

@ -43,7 +43,6 @@ namespace xo {
///@{
using size_type = xo::mm::AGCObject::size_type;
using AAllocator = xo::mm::AGCObject::AAllocator;
using ACollector = xo::mm::AGCObject::ACollector;
using AGCObjectVisitor = xo::mm::AGCObject::AGCObjectVisitor;
using VisitReason = xo::mm::AGCObject::VisitReason;
using Copaque = xo::mm::AGCObject::Copaque;

View file

@ -43,7 +43,6 @@ namespace xo {
///@{
using size_type = xo::mm::AGCObject::size_type;
using AAllocator = xo::mm::AGCObject::AAllocator;
using ACollector = xo::mm::AGCObject::ACollector;
using AGCObjectVisitor = xo::mm::AGCObject::AGCObjectVisitor;
using VisitReason = xo::mm::AGCObject::VisitReason;
using Copaque = xo::mm::AGCObject::Copaque;

View file

@ -9,10 +9,18 @@
* [iface_facet_any.hpp.j2]
* 3. idl for facet methods
* [idl/SyntaxStateMachine.json5]
*
* variables:
* {facet_hpp_fname} -> SyntaxStateMachine.hpp
* {impl_hpp_subdir} -> ssm
* {facet_ns1} -> xo
* {facet_detail_subdir} -> ssm
* {abstract_facet_fname} -> ASyntaxStateMachine.hpp
**/
#pragma once
#include "ASyntaxStateMachine.hpp"
#include "ParserStateMachine.hpp"
#include "syntaxstatetype.hpp"
#include <xo/type/Type.hpp>