round — template form avoids "using fl::round" conflict with ::round
| 314 | |
| 315 | // round — template form avoids "using fl::round" conflict with ::round |
| 316 | inline float roundf(float value) FL_NOEXCEPT { return round_impl_float(value); } |
| 317 | template<typename T> |
| 318 | inline typename enable_if<!is_integral<T>::value, T>::type |
| 319 | round(T value) FL_NOEXCEPT { |
no test coverage detected