| 97 | constexpr explicit DoubleCompareVisitor(double v) : v(v) {} |
| 98 | |
| 99 | constexpr ComparisonResult operator()(double other) const { |
| 100 | return DoubleCompare(v, other); |
| 101 | } |
| 102 | |
| 103 | constexpr ComparisonResult operator()(uint64_t other) const { |
| 104 | if (v > kDoubleToUintMax) { |
nothing calls this directly
no test coverage detected