diff options
author | Narr the Reg <juangerman-13@hotmail.com> | 2022-04-21 01:20:46 +0200 |
---|---|---|
committer | Narr the Reg <juangerman-13@hotmail.com> | 2022-04-21 01:28:24 +0200 |
commit | 17bff6bf572e1197716303dfcef4be75f351b76e (patch) | |
tree | 60bddad7aeae6f08104555dce5d366d32dba22f0 /src/input_common/helpers | |
parent | Merge pull request #8228 from liamwhite/bump-dynarmic (diff) | |
download | yuzu-17bff6bf572e1197716303dfcef4be75f351b76e.tar yuzu-17bff6bf572e1197716303dfcef4be75f351b76e.tar.gz yuzu-17bff6bf572e1197716303dfcef4be75f351b76e.tar.bz2 yuzu-17bff6bf572e1197716303dfcef4be75f351b76e.tar.lz yuzu-17bff6bf572e1197716303dfcef4be75f351b76e.tar.xz yuzu-17bff6bf572e1197716303dfcef4be75f351b76e.tar.zst yuzu-17bff6bf572e1197716303dfcef4be75f351b76e.zip |
Diffstat (limited to 'src/input_common/helpers')
-rw-r--r-- | src/input_common/helpers/udp_protocol.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/input_common/helpers/udp_protocol.h b/src/input_common/helpers/udp_protocol.h index 9c205e944..597f51cd3 100644 --- a/src/input_common/helpers/udp_protocol.h +++ b/src/input_common/helpers/udp_protocol.h @@ -8,8 +8,17 @@ #include <optional> #include <type_traits> +#ifdef _MSC_VER +#pragma warning(push) +#pragma warning(disable : 4701) // Potentially uninitialized local variable 'result' used +#endif + #include <boost/crc.hpp> +#ifdef _MSC_VER +#pragma warning(pop) +#endif + #include "common/swap.h" namespace InputCommon::CemuhookUDP { |