Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRomain Pokrzywka <romain.pokrzywka@gmail.com>2022-11-12 03:47:51 +0300
committerGitHub <noreply@github.com>2022-11-12 03:47:51 +0300
commitc5a09ebc49c05687c0f46c1c4b2a3ae57e5bbfad (patch)
treeff029f837e3cb3d75b95af61ac7eecb5d0ce10a4
parentd7de159455d0d9bafc999f78139eafddb3935c36 (diff)
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.
-rw-r--r--bench/bench.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/bench.cpp b/bench/bench.cpp
index 8a46837a..ae47f047 100644
--- a/bench/bench.cpp
+++ b/bench/bench.cpp
@@ -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