1
0
Fork 0
mirror of https://git.suyu.dev/suyu/dynarmic.git synced 2025-03-05 13:45:36 +00:00

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)
};
#ifdef _MSC_VER
#pragma warning(disable:4200)
#endif
struct arm_inst {
unsigned int idx;
unsigned int cond;