This commit is contained in:
gabime 2019-08-29 00:28:00 +03:00
parent fafedd2d59
commit b693d0cd91

View File

@ -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)
{