diff options
| author | Martin Ridgers <[email protected]> | 2021-10-29 15:03:04 +0200 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-10-29 15:49:27 +0200 |
| commit | 88e952a07637c98e9e5dc3de584e367a6591ebda (patch) | |
| tree | e4969224a3836cbddb0e5d54eed8f86867988cdf /zenserver/config.cpp | |
| parent | Misplaced #pragma once (diff) | |
| download | zen-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.cpp | 5 |
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> |