From 93c62cc2814511cc87c4ebeb43cfa0efe8c71461 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Fri, 16 Jan 2026 16:10:00 -0500 Subject: [PATCH] xo-gc: + CollectorTypeRegistry for streamlined init --- include/xo/subsys/Subsystem.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/xo/subsys/Subsystem.hpp b/include/xo/subsys/Subsystem.hpp index 3cc6012..07a9637 100644 --- a/include/xo/subsys/Subsystem.hpp +++ b/include/xo/subsys/Subsystem.hpp @@ -130,8 +130,8 @@ namespace xo { public: SubsystemImpl() = default; SubsystemImpl(bool require_flag, - std::string_view subsys_name, - std::function init_fn) + std::string_view subsys_name, + std::function init_fn) : require_flag_{require_flag}, subsys_name_{subsys_name}, init_fn_{init_fn} {}