Skip to content

Commit 3af74ee

Browse files
committed
format
1 parent bf2be04 commit 3af74ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/swar/BasicOperations.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ static_assert(
4141

4242
TEST_CASE("Jamie's totally working exponentiation :D") {
4343
using S = SWAR<8, u32>;
44-
constexpr auto base = S::fromLaneLiterals({2, 3, 5, 6});
45-
constexpr auto exponent = S::fromLaneLiterals({7, 0, 2, 3});
44+
constexpr auto base = S::fromLaneLiterals({2, 3, 5, 6});
45+
constexpr auto exponent = S::fromLaneLiterals({7, 0, 2, 3});
4646
constexpr auto expected = S::fromLaneLiterals({128, 1, 25, 216});
4747
constexpr auto actual = exponentiation_OverflowUnsafe(base, exponent);
4848
static_assert(expected.value() == actual.value());

0 commit comments

Comments
 (0)