Merge pull request #5785 from miyazakh/undef_gcc4p8

fix compile error due to Werro=undef on gcc-4.8
This commit is contained in:
Sean Parkinson
2022-11-10 08:05:56 +10:00
committed by GitHub

View File

@@ -598,7 +598,7 @@ static WC_INLINE sp_int_digit sp_div_word(sp_int_digit hi, sp_int_digit lo,
: "cc"
);
return lo;
#elif _MSC_VER >= 1920
#elif defined(_MSC_VER) && _MSC_VER >= 1920
return _udiv128(hi, lo, d, NULL);
#endif
}