| 2105 | |
| 2106 | template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type> |
| 2107 | friend bool operator <= ( T const& lhs, Approx const& rhs ) { |
| 2108 | return static_cast<double>(lhs) < rhs.m_value || lhs == rhs; |
| 2109 | } |
| 2110 | |
| 2111 | template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type> |
| 2112 | friend bool operator <= ( Approx const& lhs, T const& rhs ) { |
nothing calls this directly
no outgoing calls
no test coverage detected