sqrt
| 451 | |
| 452 | // sqrt |
| 453 | inline float sqrtf(float value) FL_NOEXCEPT { return sqrt_impl_float(value); } |
| 454 | inline float sqrt(float value) FL_NOEXCEPT { return sqrt_impl_float(value); } |
| 455 | inline double sqrt(double value) FL_NOEXCEPT { return sqrt_impl_double(value); } |
| 456 | template<typename T> inline typename enable_if<is_integral<T>::value, float>::type |
no test coverage detected