| 2095 | |
| 2096 | template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type> |
| 2097 | friend bool operator != ( T const& lhs, Approx const& rhs ) { |
| 2098 | return !operator==( lhs, rhs ); |
| 2099 | } |
| 2100 | |
| 2101 | template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type> |
| 2102 | friend bool operator != ( Approx const& lhs, T const& rhs ) { |
nothing calls this directly
no outgoing calls
no test coverage detected