Update #include to deprecated fmt header

The <fmt/locale.h> header has been marked as deprecated for a while
and has finally been removed in fmt v0.9.0:
https://github.com/fmtlib/fmt/commit/5c7d315ded7bdb6cc5bd65daef091eefe

Replace with <fmt/format.h> instead, as recommended.
pull/2545/head
Romain Pokrzywka 3 years ago
parent d7de159455
commit 199c7a5f85

@ -15,7 +15,7 @@
#if defined(SPDLOG_USE_STD_FORMAT)
# include <format>
#elif defined(SPDLOG_FMT_EXTERNAL)
# include <fmt/locale.h>
# include <fmt/format.h>
#else
# include "spdlog/fmt/bundled/format.h"
#endif

Loading…
Cancel
Save