Skip to content

Commit 2f678c1

Browse files
committed
Try to fix the VS2015 test on appveyor
1 parent 36483d6 commit 2f678c1

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

test/test_strided_assign.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,12 @@ namespace xt
3333
auto check_strided_assign = [](auto a, auto b)
3434
{
3535
assert_compatible_shape(a, b);
36+
#ifndef _WIN32
3637
static_assert(
3738
xassign_traits<decltype(a), decltype(b)>::strided_assign(),
3839
"Failed to do strided assign"
3940
);
41+
#endif
4042
return strided_assign_detail::get_loop_sizes(a, b).can_do_strided_assign;
4143
};
4244
{

0 commit comments

Comments
 (0)