From 199c7a5f8509ea4ec96b56abf1de864c460df164 Mon Sep 17 00:00:00 2001 From: Romain Pokrzywka Date: Fri, 11 Nov 2022 22:25:56 +0000 Subject: [PATCH] Update #include to deprecated fmt header The 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 instead, as recommended. --- bench/bench.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 #elif defined(SPDLOG_FMT_EXTERNAL) -# include +# include #else # include "spdlog/fmt/bundled/format.h" #endif