We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff7454a commit 91575e7Copy full SHA for 91575e7
test/test_api.cpp
@@ -144,7 +144,7 @@ class xsimd_api_test : public testing::Test
144
{
145
T v = T(1);
146
batch_type expected(v);
147
- batch_type res = xsimd::broadcast<T, value_type>(v);
+ batch_type res = xsimd::broadcast<value_type>(v);
148
EXPECT_BATCH_EQ(res, expected) << print_function_name(name);
149
}
150
@@ -182,10 +182,8 @@ TYPED_TEST(xsimd_api_test, store)
182
this->test_store();
183
184
185
-#ifdef XSIMD_BATCH_DOUBLE_SIZE
186
TYPED_TEST(xsimd_api_test, set)
187
188
this->test_set();
189
190
#endif
191
-#endif
0 commit comments