| 2084 | |
| 2085 | template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type> |
| 2086 | friend bool operator == ( const T& lhs, Approx const& rhs ) { |
| 2087 | auto lhs_v = static_cast<double>(lhs); |
| 2088 | return rhs.equalityComparisonImpl(lhs_v); |
| 2089 | } |
| 2090 | |
| 2091 | template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type> |
| 2092 | friend bool operator == ( Approx const& lhs, const T& rhs ) { |
nothing calls this directly
no test coverage detected