| 11517 | } |
| 11518 | |
| 11519 | Floating::WithinRelMatcher WithinRel(double target, double eps) { |
| 11520 | return Floating::WithinRelMatcher(target, eps); |
| 11521 | } |
| 11522 | |
| 11523 | Floating::WithinRelMatcher WithinRel(double target) { |
| 11524 | return Floating::WithinRelMatcher(target, std::numeric_limits<double>::epsilon() * 100); |
nothing calls this directly
no test coverage detected