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