mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 13:30:06 +00:00
Guard pragma warning statements with ifdef msvc
This commit is contained in:
parent
ec45e0bce0
commit
509fc76653
12 changed files with 100 additions and 28 deletions
|
|
@ -8,7 +8,10 @@
|
|||
#include <chrono>
|
||||
#include <execution>
|
||||
|
||||
#pragma warning(push, 0)
|
||||
#if defined(_MSC_VER)
|
||||
# pragma warning(push, 0)
|
||||
#endif
|
||||
|
||||
#include <boost/date_time.hpp>
|
||||
#include <boost/date_time/local_time/local_time.hpp>
|
||||
#include <boost/timer/timer.hpp>
|
||||
|
|
@ -18,7 +21,10 @@
|
|||
#include <glm/gtc/type_ptr.hpp>
|
||||
#include <imgui.h>
|
||||
#include <mbgl/util/constants.hpp>
|
||||
#pragma warning(pop)
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
# pragma warning(pop)
|
||||
#endif
|
||||
|
||||
namespace scwx
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue