mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
Fixed compilation warnings
This commit is contained in:
parent
4250a0cab0
commit
78732186ee
@ -47,10 +47,10 @@ static void test_static_dimension_failure()
|
|||||||
|
|
||||||
// This can be worked around in this case.
|
// This can be worked around in this case.
|
||||||
Tensor<int, 3, DataLayout> concatenation = left
|
Tensor<int, 3, DataLayout> concatenation = left
|
||||||
.reshape(Tensor<int, 3>::Dimensions{{2, 3, 1}})
|
.reshape(Tensor<int, 3>::Dimensions(2, 3, 1))
|
||||||
.concatenate(right, 0);
|
.concatenate(right, 0);
|
||||||
Tensor<int, 2, DataLayout> alternative = left
|
Tensor<int, 2, DataLayout> alternative = left
|
||||||
.concatenate(right.reshape(Tensor<int, 2>::Dimensions{{2, 3}}), 0);
|
.concatenate(right.reshape(Tensor<int, 2>::Dimensions{{{2, 3}}}), 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<int DataLayout>
|
template<int DataLayout>
|
||||||
|
Loading…
Reference in New Issue
Block a user