| 7795 | } // namespace Floating |
| 7796 | |
| 7797 | Floating::WithinUlpsMatcher WithinULP(double target, int maxUlpDiff) { |
| 7798 | return Floating::WithinUlpsMatcher(target, maxUlpDiff, Floating::FloatingPointKind::Double); |
| 7799 | } |
| 7800 | |
| 7801 | Floating::WithinUlpsMatcher WithinULP(float target, int maxUlpDiff) { |
| 7802 | return Floating::WithinUlpsMatcher(target, maxUlpDiff, Floating::FloatingPointKind::Float); |
nothing calls this directly
no test coverage detected