Update #include to deprecated fmt header (#2545)

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.
This commit is contained in:
Romain Pokrzywka 2022-11-11 18:47:51 -06:00 committed by GitHub
parent d7de159455
commit c5a09ebc49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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