| 123 | } |
| 124 | |
| 125 | bool JsonNumberFieldImpl::operator==(float v) const FL_NOEXCEPT { return fl::almost_equal(value(), v); } |
| 126 | |
| 127 | bool JsonNumberFieldImpl::operator==(int v) const FL_NOEXCEPT { return fl::almost_equal(value(), static_cast<float>(v)); } |
| 128 |
nothing calls this directly
no test coverage detected