aboutsummaryrefslogtreecommitdiff
path: root/zenserver/config.cpp
diff options
context:
space:
mode:
authorMartin Ridgers <[email protected]>2021-10-29 15:03:04 +0200
committerMartin Ridgers <[email protected]>2021-10-29 15:49:27 +0200
commit88e952a07637c98e9e5dc3de584e367a6591ebda (patch)
treee4969224a3836cbddb0e5d54eed8f86867988cdf /zenserver/config.cpp
parentMisplaced #pragma once (diff)
downloadzen-88e952a07637c98e9e5dc3de584e367a6591ebda.tar.xz
zen-88e952a07637c98e9e5dc3de584e367a6591ebda.zip
Use THIRDPARTY_START/END instead of MSVC-specific #pragma
Diffstat (limited to 'zenserver/config.cpp')
-rw-r--r--zenserver/config.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/zenserver/config.cpp b/zenserver/config.cpp
index 799891289..67af37678 100644
--- a/zenserver/config.cpp
+++ b/zenserver/config.cpp
@@ -9,10 +9,9 @@
#include <zencore/string.h>
#include <zenhttp/zenhttp.h>
-#pragma warning(push)
-#pragma warning(disable : 4267) // warning C4267: '=': conversion from 'size_t' to 'US', possible loss of data
+ZEN_THIRD_PARTY_INCLUDES_START
#include <cxxopts.hpp>
-#pragma warning(pop)
+ZEN_THIRD_PARTY_INCLUDES_END
#include <fmt/format.h>
#include <zencore/logging.h>