gnss-sim/3rdparty/boost/histogram/detail/ignore_deprecation_warning_...

9 lines
312 B
C++
Raw Normal View History

2024-12-24 16:15:51 +00:00
#if (defined(__GNUC__) || defined(__clang__))
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#elif defined(_MSC_VER)
#pragma warning(push) // preserve warning settings
#pragma warning(disable : 4996) // disable depricated localtime/gmtime warning on vc8
#endif