1
0
mirror of https://github.com/gabime/spdlog.git synced 2025-04-01 02:42:41 +08:00

Fixed fmt locale.h deprecation warning

This commit is contained in:
gabime 2021-06-24 17:22:06 +03:00
parent efbe3e4d57
commit b990080a52
2 changed files with 8 additions and 8 deletions

View File

@ -11,9 +11,9 @@
#include "spdlog/sinks/basic_file_sink.h" #include "spdlog/sinks/basic_file_sink.h"
#ifdef SPDLOG_FMT_EXTERNAL #ifdef SPDLOG_FMT_EXTERNAL
#include <fmt/locale.h> # include <fmt/format.h>
#else #else
#include "spdlog/fmt/bundled/locale.h" # include "spdlog/fmt/bundled/format.h"
#endif #endif
#include "utils.h" #include "utils.h"

View File

@ -15,7 +15,7 @@
#ifdef SPDLOG_FMT_EXTERNAL #ifdef SPDLOG_FMT_EXTERNAL
# include <fmt/locale.h> # include <fmt/locale.h>
#else #else
#include "spdlog/fmt/bundled/locale.h" # include "spdlog/fmt/bundled/format.h"
#endif #endif
#include "utils.h" #include "utils.h"