Merge pull request #2499 from offa/clang_cpp20_workaround

Workaround deprecation warning on Clang with C++20
This commit is contained in:
Gabi Melman 2022-09-30 00:07:28 +03:00 committed by GitHub
commit 523a075f82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,14 @@
# define FMT_HEADER_ONLY # define FMT_HEADER_ONLY
# endif # endif
# 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> # include <spdlog/fmt/bundled/chrono.h>
# if __cplusplus >= 202002L && defined(__clang__)
# pragma clang diagnostic pop
# endif
# else # else
# include <fmt/chrono.h> # include <fmt/chrono.h>
# endif # endif