suppress "integral constant overflow" warning under msvc 2017

This commit is contained in:
gabime 2022-10-31 17:03:53 +02:00
parent 8a0b2231b1
commit 9125bda301

View File

@ -7,8 +7,19 @@
#endif
#if !defined(SPDLOG_FMT_EXTERNAL) && !defined(SPDLOG_USE_STD_FORMAT)
// suppress "integral constant overflow" warning under msvc 2017 (which doesn't appear in other msvc versions)
#if defined(_MSC_VER) && (_MSC_VER >= 1910) && (_MSC_VER <= 1916)
# pragma warning(push)
# pragma warning(disable : 4307)
#endif
# include <spdlog/fmt/bundled/format-inl.h>
#if defined(_MSC_VER)
# pragma warning(pop)
#endif
FMT_BEGIN_NAMESPACE
namespace detail {