Change preprocessor conditional

This commit is contained in:
twinaphex 2016-06-07 04:48:06 +02:00
parent d14444e0fc
commit b1fe3506d7

View File

@ -60,7 +60,7 @@ static INLINE int compat_ctz(unsigned x)
{
return __builtin_ctz(x);
}
#elif defined(_MSC_VER) && defined(_MSC_VER >= 1400)
#elif _MSC_VER >= 1400
static INLINE int compat_ctz(unsigned x)
{
int r = 0;