diff --git a/include/xo/indentlog/print/hex.hpp b/include/xo/indentlog/print/hex.hpp index 8f5f6f35..8a6517d5 100644 --- a/include/xo/indentlog/print/hex.hpp +++ b/include/xo/indentlog/print/hex.hpp @@ -109,7 +109,8 @@ namespace xo { for (std::uint8_t const * p = lo_; p < hi_; ++p) { if (i > 0) os << " "; - os << hex(*p, as_text_); + xo::hex(*p, as_text_).print(os); + //os << xo::hex(*p, as_text_); ++i; } os << "]";