| 53 | #if defined(__ANDROID__) || defined(BARE_METAL) |
| 54 | template <typename T> |
| 55 | inline T nearbyint(T value) |
| 56 | { |
| 57 | return static_cast<T>(::nearbyint(value)); |
| 58 | } |
| 59 | |
| 60 | /** Round floating-point value with half value rounding away from zero. |
| 61 | * |
no outgoing calls
no test coverage detected