skyeye: Disable MSVC warning C4200

This commit is contained in:
MerryMage 2016-08-25 17:38:12 +01:00
parent 1f329b2fbf
commit ec4c91a92b

View file

@ -13,6 +13,9 @@ enum class TransExtData {
SINGLE_STEP = (1 << 8) SINGLE_STEP = (1 << 8)
}; };
#ifdef _MSC_VER
#pragma warning(disable:4200)
#endif
struct arm_inst { struct arm_inst {
unsigned int idx; unsigned int idx;
unsigned int cond; unsigned int cond;