Asserts that val1 is less than, or almost equal to, val2. Fails otherwise. In particular, it fails if either val1 or val2 is NaN.
| 2403 | // Asserts that val1 is less than, or almost equal to, val2. Fails |
| 2404 | // otherwise. In particular, it fails if either val1 or val2 is NaN. |
| 2405 | AssertionResult DoubleLE(const char* expr1, const char* expr2, |
| 2406 | double val1, double val2) { |
| 2407 | return internal::FloatingPointLE<double>(expr1, expr2, val1, val2); |
| 2408 | } |
| 2409 | |
| 2410 | namespace internal { |
| 2411 |
nothing calls this directly
no outgoing calls
no test coverage detected