| 2757 | |
| 2758 | template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type> |
| 2759 | friend bool operator != ( T const& lhs, Approx const& rhs ) { |
| 2760 | return !operator==( lhs, rhs ); |
| 2761 | } |
| 2762 | |
| 2763 | template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type> |
| 2764 | friend bool operator != ( Approx const& lhs, T const& rhs ) { |
nothing calls this directly
no outgoing calls
no test coverage detected