diff options
| author | 2021-06-28 14:19:16 -0400 | |
|---|---|---|
| committer | 2021-06-28 14:20:25 -0400 | |
| commit | 954259312e9e2702d069fb925e738c6e5bb814b9 (patch) | |
| tree | 9ea46329e87c268ce40fa30b8eba0cedcc59d1eb /src/input_common/udp | |
| parent | CMakeLists: Enforce C4018, C4267, C4305, C4389 (diff) | |
| download | yuzu-954259312e9e2702d069fb925e738c6e5bb814b9.tar.gz yuzu-954259312e9e2702d069fb925e738c6e5bb814b9.tar.xz yuzu-954259312e9e2702d069fb925e738c6e5bb814b9.zip | |
input_common: Remove #pragma warning directives for external headers
Diffstat (limited to '')
| -rw-r--r-- | src/input_common/udp/protocol.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/input_common/udp/protocol.h b/src/input_common/udp/protocol.h index a3d276697..1bdc9209e 100644 --- a/src/input_common/udp/protocol.h +++ b/src/input_common/udp/protocol.h | |||
| @@ -8,14 +8,7 @@ | |||
| 8 | #include <optional> | 8 | #include <optional> |
| 9 | #include <type_traits> | 9 | #include <type_traits> |
| 10 | 10 | ||
| 11 | #ifdef _MSC_VER | ||
| 12 | #pragma warning(push) | ||
| 13 | #pragma warning(disable : 4701) | ||
| 14 | #endif | ||
| 15 | #include <boost/crc.hpp> | 11 | #include <boost/crc.hpp> |
| 16 | #ifdef _MSC_VER | ||
| 17 | #pragma warning(pop) | ||
| 18 | #endif | ||
| 19 | 12 | ||
| 20 | #include "common/bit_field.h" | 13 | #include "common/bit_field.h" |
| 21 | #include "common/swap.h" | 14 | #include "common/swap.h" |