mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-08-23 14:20:52 +00:00
fix: math functions (support for inferior C++14 standard)
add C++14 constexpr modifying algorithms
This commit is contained in:
parent
58cff54e0d
commit
c58c9cc0fc
106 changed files with 3465 additions and 2144 deletions
|
@ -16,24 +16,16 @@
|
|||
|
||||
namespace sprout {
|
||||
namespace math {
|
||||
namespace detail {
|
||||
template<
|
||||
typename FloatType,
|
||||
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
|
||||
>
|
||||
inline SPROUT_CONSTEXPR FloatType
|
||||
abs(FloatType x) {
|
||||
return sprout::math::fabs(x);
|
||||
}
|
||||
} // namespace detail
|
||||
|
||||
//
|
||||
// abs
|
||||
//
|
||||
template<
|
||||
typename FloatType,
|
||||
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
|
||||
>
|
||||
inline SPROUT_CONSTEXPR FloatType
|
||||
abs(FloatType x) {
|
||||
return NS_SPROUT_MATH_DETAIL::abs(x);
|
||||
return sprout::math::fabs(x);
|
||||
}
|
||||
} // namespace math
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue