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:
authorGabi Melman <gmelman1@gmail.com>2022-11-01 15:46:39 +0300
committerGitHub <noreply@github.com>2022-11-01 15:46:39 +0300
commit7aa00607ea9d07eeade2f1a4ea6f752983d01d0f (patch)
tree7d290beead2c5f1118f83cfafb060cccc5a3eed0
parentbd5a81df7092c899b63c3f1bc3792a5f97113cc4 (diff)
chrono.h: Remove warning suppression
Not needed since fmt 9.x
-rw-r--r--include/spdlog/fmt/chrono.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/spdlog/fmt/chrono.h b/include/spdlog/fmt/chrono.h
index edc56324..83fad2ff 100644
--- a/include/spdlog/fmt/chrono.h
+++ b/include/spdlog/fmt/chrono.h
@@ -15,14 +15,7 @@
# define FMT_HEADER_ONLY
# endif
# endif
-# if __cplusplus >= 202002L && defined(__clang__)
-# pragma clang diagnostic push
-# pragma clang diagnostic ignored "-Wdeprecated" // Workaround for Clang C++20; remove once fmt >= 9.x
-# endif
# include <spdlog/fmt/bundled/chrono.h>
-# if __cplusplus >= 202002L && defined(__clang__)
-# pragma clang diagnostic pop
-# endif
# else
# include <fmt/chrono.h>
# endif