msvc: remove some unneeded warning disable

this was either for libusb.h or some now-removed code.
This commit is contained in:
Shawn Hoffman 2021-06-03 16:32:54 -07:00
parent d19d2ce2bd
commit d8cc419eb3

View File

@ -59,12 +59,6 @@ private:
InterruptCallbackType m_callback;
};
#ifdef _MSC_VER
#pragma warning(push)
// Disable warning for zero-sized array:
#pragma warning(disable : 4200)
#endif
#pragma pack(push, 1)
template <typename T>
@ -84,8 +78,4 @@ struct TypedInputData
#pragma pack(pop)
#ifdef _MSC_VER
#pragma warning(pop)
#endif
} // namespace WiimoteCommon