| 7766 | } |
| 7767 | |
| 7768 | std::string WithinAbsMatcher::describe() const { |
| 7769 | return "is within " + ::Catch::Detail::stringify(m_margin) + " of " + ::Catch::Detail::stringify(m_target); |
| 7770 | } |
| 7771 | |
| 7772 | WithinUlpsMatcher::WithinUlpsMatcher(double target, int ulps, FloatingPointKind baseType) |
| 7773 | : m_target{target}, m_ulps{ulps}, m_type{baseType} { |
nothing calls this directly
no test coverage detected