Skip to content

Commit 52bf72e

Browse files
Remove workaround to see what's failing
1 parent 7c1af06 commit 52bf72e

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

  • tests/std/tests/P0811R3_midpoint_lerp

tests/std/tests/P0811R3_midpoint_lerp/test.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,7 @@ constexpr int fe_major_except = FE_INVALID | FE_DIVBYZERO | FE_OVERFLOW;
9191

9292
bool check_feexcept(
9393
[[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
9794
return fetestexcept(except_mask) == (expected_excepts & except_mask);
98-
#endif // ^^^ no workaround ^^^
9995
}
10096
#else // ^^^ defined(_M_FP_STRICT) / !defined(_M_FP_STRICT) vvv
10197
class ExceptGuard {

0 commit comments

Comments
 (0)