mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-01 03:34:39 +02:00
fix compile error due to Werro=undef on gcc-4.8
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
Reference in New Issue
Block a user