fmod — template form avoids "using fl::fmod" conflict with ::fmod
| 334 | |
| 335 | // fmod — template form avoids "using fl::fmod" conflict with ::fmod |
| 336 | inline float fmodf(float x, float y) FL_NOEXCEPT { return fmod_impl_float(x, y); } |
| 337 | template<typename T> |
| 338 | inline typename enable_if<!is_integral<T>::value, T>::type |
| 339 | fmod(T x, T y) FL_NOEXCEPT { |
no test coverage detected