input_common: Ignore boost uninitialized local variable

This commit is contained in:
Narr the Reg 2022-04-20 18:20:46 -05:00
parent 5fdeda5ee8
commit 17bff6bf57

View file

@ -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 {