1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

fix exponential functions

This commit is contained in:
bolero-MURAKAMI 2013-04-25 15:36:19 +09:00
parent 32c3ba02d4
commit dad3acceea
41 changed files with 180 additions and 354 deletions

View file

@ -17,8 +17,8 @@ namespace sprout {
>
inline SPROUT_CONSTEXPR int
isfinite(FloatType x) {
return !sprout::isnan(x)
&& !sprout::isinf(x)
return !sprout::math::isnan(x)
&& !sprout::math::isinf(x)
;
}
} // namespace detail