| 1671 | } |
| 1672 | |
| 1673 | FMT_CONSTEXPR inline auto operator*(fp x, fp y) -> fp { |
| 1674 | return {multiply(x.f, y.f), x.e + y.e + 64}; |
| 1675 | } |
| 1676 | |
| 1677 | template <typename T, bool doublish = num_bits<T>() == num_bits<double>()> |
| 1678 | using convert_float_result = |
nothing calls this directly
no test coverage detected