| 83 | */ |
| 84 | template <typename T, typename = typename std::enable_if<std::is_floating_point<T>::value>::type> |
| 85 | inline long lround(T value) |
| 86 | { |
| 87 | return ::lround(value); |
| 88 | } |
| 89 | |
| 90 | /** Truncate floating-point value. |
| 91 | * |
no outgoing calls
no test coverage detected