diff --git a/include/xo/alloc2/print.hpp b/include/xo/alloc2/print.hpp deleted file mode 100644 index 5c47476..0000000 --- a/include/xo/alloc2/print.hpp +++ /dev/null @@ -1,34 +0,0 @@ -/** @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 */ diff --git a/utest/arena.test.cpp b/utest/arena.test.cpp index 7ece32c..ed16833 100644 --- a/utest/arena.test.cpp +++ b/utest/arena.test.cpp @@ -6,7 +6,7 @@ #include "xo/alloc2/Allocator.hpp" #include "xo/alloc2/alloc/IAllocator_Xfer.hpp" #include "xo/alloc2/arena/IAllocator_DArena.hpp" -#include "xo/alloc2/print.hpp" +#include "xo/arena/print.hpp" #include "xo/arena/padding.hpp" #include #include