Skip to content

Commit 58aaa34

Browse files
Avoid warning
1 parent c11519a commit 58aaa34

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/cpu/test_cpu.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ TEST(Wrapper, AoS) {
5757
test::counters expected_count = {0, 1, 0, 0, 0, 0, 1};
5858
{
5959
constexpr std::size_t N = 32;
60-
memlayout::Wrapper<test::Point3D, test::vector, memlayout::Layout::aos> w{{N}};
60+
memlayout::Wrapper<test::Point3D, test::vector, memlayout::Layout::aos> w{N};
6161
test_random_access(N, w);
6262
}
6363
EXPECT_EQ(expected_count, test::call_counter::count);

0 commit comments

Comments
 (0)