| 4460 | namespace Detail { |
| 4461 | |
| 4462 | Approx::Approx(double value) |
| 4463 | : m_epsilon(std::numeric_limits<float>::epsilon() * 100), m_margin(0.0), m_scale(0.0), m_value(value) { |
| 4464 | } |
| 4465 | |
| 4466 | Approx Approx::custom() { |
| 4467 | return Approx(0); |
nothing calls this directly
no outgoing calls
no test coverage detected