| 7726 | }; |
| 7727 | |
| 7728 | template <typename T> auto convert(T t) -> Converter<T> { |
| 7729 | return Converter<T>(t); |
| 7730 | } |
| 7731 | |
| 7732 | template <typename FP> bool almostEqualUlps(FP lhs, FP rhs, int maxUlpDiff) { |
| 7733 | // Comparison with NaN should always be false. |
no outgoing calls
no test coverage detected