| 11671 | } |
| 11672 | |
| 11673 | Floating::WithinRelMatcher WithinRel(double target, double eps) { |
| 11674 | return Floating::WithinRelMatcher(target, eps); |
| 11675 | } |
| 11676 | |
| 11677 | Floating::WithinRelMatcher WithinRel(double target) { |
| 11678 | return Floating::WithinRelMatcher(target, std::numeric_limits<double>::epsilon() * 100); |
nothing calls this directly
no test coverage detected