| 2742 | |
| 2743 | template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type> |
| 2744 | explicit Approx( T const& value ): Approx(static_cast<double>(value)) |
| 2745 | {} |
| 2746 | |
| 2747 | template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type> |
| 2748 | friend bool operator == ( const T& lhs, Approx const& rhs ) { |
nothing calls this directly
no outgoing calls
no test coverage detected