| 9170 | } |
| 9171 | |
| 9172 | WithinUlpsMatcher::WithinUlpsMatcher(double target, int ulps, FloatingPointKind baseType) |
| 9173 | :m_target{ target }, m_ulps{ ulps }, m_type{ baseType } { |
| 9174 | CATCH_ENFORCE(ulps >= 0, "Invalid ULP setting: " << ulps << '.' |
| 9175 | << " ULPs have to be non-negative."); |
| 9176 | } |
| 9177 | |
| 9178 | #if defined(__clang__) |
| 9179 | #pragma clang diagnostic push |
nothing calls this directly
no outgoing calls
no test coverage detected