Implement operators `<=` and `>=` to explicitly check the comparison results to be `cmpLessThan` or `cmpEqual` instead of negating the result of `operators<`. Fixes #85947
9 lines
186 B
C++
9 lines
186 B
C++
#include <limits>
|
|
|
|
int main() {
|
|
float fnan = std::numeric_limits<float>::quiet_NaN();
|
|
float fdenorm = std::numeric_limits<float>::denorm_min();
|
|
|
|
// Set break point at this line.
|
|
}
|