| 2080 | |
| 2081 | template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type> |
| 2082 | explicit Approx( T const& value ): Approx(static_cast<double>(value)) |
| 2083 | {} |
| 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 ) { |
nothing calls this directly
no outgoing calls
no test coverage detected