Re: [PATCH 08/14] Test for WIN32 instead of __MINGW32_
From: Paolo Bonzini <hidden> Date: 2016-06-15 22:47:19
Since you are doing this, you may as well change patch 3 from
+#if (defined(__MINGW32__) && defined(__GNUC__) && __GNUC__ < 4) ||
defined(_MSC_VER)
to this:
#if defined WIN32 && (!defined (__GNUC__) || __GNUC__ < 4))
Paolo