Fixed bin2hex to work with fmt v8

This commit is contained in:
gabime 2021-06-24 15:58:25 +03:00
parent 8bf718671a
commit 5887744d8b

View File

@ -209,7 +209,7 @@ struct formatter<spdlog::details::dump_info<T>>
if (put_positions) if (put_positions)
{ {
fmt::format_to(inserter, "{:<04X}: ", pos); fmt::format_to(inserter, "{:04X}: ", pos);
} }
} }
}; };