| 2671 | } |
| 2672 | |
| 2673 | std::string toString() const { |
| 2674 | std::ostringstream oss; |
| 2675 | oss << "Approx( " << Catch::toString( m_value ) << " )"; |
| 2676 | return oss.str(); |
| 2677 | } |
| 2678 | |
| 2679 | private: |
| 2680 | double m_epsilon; |
nothing calls this directly
no test coverage detected