Commit b693d0cd authored by gabime's avatar gabime

Fix #1195

parent fafedd2d
......@@ -116,7 +116,12 @@ struct formatter<spdlog::details::bytes_range<T>>
std::size_t pos = 0;
std::size_t column = line_size;
#if FMT_VERSION < 60000
auto inserter = ctx.begin();
#else
auto inserter = ctx.out();
#endif
for (auto &item : the_range)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment