MCPcopy Create free account
hub / github.com/awslabs/aws-lambda-cpp / DoubleLE

Function DoubleLE

tests/gtest/gtest-all.cc:2921–2924  ·  view source on GitHub ↗

Asserts that val1 is less than, or almost equal to, val2. Fails otherwise. In particular, it fails if either val1 or val2 is NaN.

Source from the content-addressed store, hash-verified

2919// Asserts that val1 is less than, or almost equal to, val2. Fails
2920// otherwise. In particular, it fails if either val1 or val2 is NaN.
2921AssertionResult DoubleLE(const char* expr1, const char* expr2,
2922 double val1, double val2) {
2923 return internal::FloatingPointLE<double>(expr1, expr2, val1, val2);
2924}
2925
2926namespace internal {
2927

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected