/** @file print.hpp * * @author Roland Conybeare, Dec 2025 **/ #pragma once #include "AllocError.hpp" #include #include namespace xo { namespace mm { inline std::ostream & operator<<(std::ostream & os, const error & x) { os << AllocError::error_description(x); return os; } inline std::ostream & operator<<(std::ostream & os, const AllocError & x) { os << ""; return os; } } } /* end print.hpp */