Warning pragmas

This commit is contained in:
Dan Paulat 2023-04-17 18:34:04 -05:00
parent d8b669262c
commit cdd4ced28e
7 changed files with 63 additions and 2 deletions

View file

@ -14,14 +14,20 @@
#include <mutex>
#include <shared_mutex>
#pragma warning(push, 0)
#if defined(_MSC_VER)
# pragma warning(push, 0)
#endif
#include <boost/asio/steady_timer.hpp>
#include <boost/container_hash/hash.hpp>
#include <boost/range/irange.hpp>
#include <boost/timer/timer.hpp>
#include <fmt/chrono.h>
#include <QMapLibreGL/QMapLibreGL>
#pragma warning(pop)
#if defined(_MSC_VER)
# pragma warning(pop)
#endif
namespace scwx
{