Fix compiler warnings

This commit is contained in:
Stan Moore
2018-03-14 13:27:03 -06:00
parent d9c6278844
commit 15a9600569
17 changed files with 87 additions and 69 deletions

View File

@ -541,7 +541,8 @@ double MathSpecial::fm_exp(double x)
#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
return exp2_x86(FM_DOUBLE_LOG2OFE * x);
#endif
#endif
#else
return ::exp(x);
#endif
}