There was an error while loading. Please reload this page.
1 parent 7c1af06 commit 52bf72eCopy full SHA for 52bf72e
1 file changed
tests/std/tests/P0811R3_midpoint_lerp/test.cpp
@@ -91,11 +91,7 @@ constexpr int fe_major_except = FE_INVALID | FE_DIVBYZERO | FE_OVERFLOW;
91
92
bool check_feexcept(
93
[[maybe_unused]] const int expected_excepts, [[maybe_unused]] const int except_mask = fe_major_except) {
94
-#if defined(_M_ARM64) || defined(_M_ARM64EC) // TRANSITION, GH-5685
95
- return true;
96
-#else // ^^^ workaround / no workaround vvv
97
return fetestexcept(except_mask) == (expected_excepts & except_mask);
98
-#endif // ^^^ no workaround ^^^
99
}
100
#else // ^^^ defined(_M_FP_STRICT) / !defined(_M_FP_STRICT) vvv
101
class ExceptGuard {
0 commit comments