| 54 | // the expense of sacrificing some precision. |
| 55 | |
| 56 | static long long convertToFixed(double floatValue) |
| 57 | { |
| 58 | return std::llround(floatValue * 1000); |
| 59 | } |
| 60 | |
| 61 | |
| 62 | static double convertToFloating(long long fixedValue) |
no outgoing calls
no test coverage detected