We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d680624 commit e4b24f7Copy full SHA for e4b24f7
test/test_shuffle.cpp
@@ -620,10 +620,10 @@ struct shuffle_test
620
void transpose()
621
{
622
B b_lhs = B::load_unaligned(lhs.data());
623
- alignas(arch_type::alignment()) std::array<B, size> b_matrix = {};
+ std::array<B, size> b_matrix = {};
624
for (size_t i = 0; i < size; ++i)
625
b_matrix[i] = b_lhs;
626
- alignas(arch_type::alignment()) std::array<value_type, size * size> ref_matrix = {};
+ std::array<value_type, size * size> ref_matrix = {};
627
628
for (size_t j = 0; j < size; ++j)
629
ref_matrix[i * size + j] = lhs[i];
0 commit comments