Skip to content

Commit

Permalink
Working around MSVC ICE... AGAIN
Browse files Browse the repository at this point in the history
  • Loading branch information
Epixu committed Feb 18, 2025
1 parent 25fdea0 commit cb4bf05
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/Multiply/TestMul-VS.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ TEMPLATE_TEST_CASE("Vector * Scalar", "[multiply]"
}
else InitOne(y, -5);

WHEN("Multiplied as constexpr (with saturation)") {
//WHEN("Multiplied as constexpr (with saturation)") {
static_assert(SIMD::Multiply<true>(T {0}, E {5}) == T {0});
}
//}

WHEN("Multiplied as constexpr (without saturation)") {
//WHEN("Multiplied as constexpr (without saturation)") {
static_assert(SIMD::Multiply<false>(T {0}, E {5}) == T {0});
}
//}

WHEN("Multiplied (with saturation)") {
ControlMul<true>(x, y, rCheck);
Expand Down

0 comments on commit cb4bf05

Please sign in to comment.