xo-umbrella2/xo-alloc2/include/xo/alloc2/init_alloc2.hpp
Roland Conybeare 6a82040d48 git subrepo clone git@github.com:Rconybea/xo-alloc2.git xo-alloc2
subrepo:
  subdir:   "xo-alloc2"
  merged:   "4039c29f"
upstream:
  origin:   "git@github.com:Rconybea/xo-alloc2.git"
  branch:   "main"
  commit:   "4039c29f"
git-subrepo:
  version:  "0.4.9"
  origin:   "???"
  commit:   "???"
2026-06-06 22:01:14 -04:00

23 lines
424 B
C++

/** @file init_alloc2.hpp
*
* @author Roland Conybeare, Feb 2026
**/
#pragma once
#include <xo/subsys/Subsystem.hpp>
namespace xo {
/* tag to represent the xo-alloc2/ subsystem within ordered initialization */
enum S_alloc2_tag {};
template <>
struct InitSubsys<S_alloc2_tag> {
static void init();
static InitEvidence require();
};
} /*namespace xo*/
/* end init_alloc2.hpp */