| 1966 | |
| 1967 | template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type> |
| 1968 | explicit Approx(T const &value) : Approx(static_cast<double>(value)) { |
| 1969 | } |
| 1970 | |
| 1971 | template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type> |
| 1972 | friend bool operator==(const T &lhs, Approx const &rhs) { |
nothing calls this directly
no outgoing calls
no test coverage detected