aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/basicstuff.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/basicstuff.cpp')
-rw-r--r--test/basicstuff.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/basicstuff.cpp b/test/basicstuff.cpp
index 5ad4090cd..85af603d8 100644
--- a/test/basicstuff.cpp
+++ b/test/basicstuff.cpp
@@ -194,7 +194,7 @@ template<typename MatrixType> void basicStuffComplex(const MatrixType& m)
VERIFY(!static_cast<const MatrixType&>(cm).imag().isZero());
}
-#ifdef EIGEN_TEST_PART_2
+template<int>
void casting()
{
Matrix4f m = Matrix4f::Random(), m2;
@@ -203,7 +203,6 @@ void casting()
m2 = m.cast<float>(); // check the specialization when NewType == Type
VERIFY(m.isApprox(m2));
}
-#endif
template <typename Scalar>
void fixedSizeMatrixConstruction()
@@ -290,5 +289,5 @@ EIGEN_DECLARE_TEST(basicstuff)
CALL_SUBTEST_1(fixedSizeMatrixConstruction<long int>());
CALL_SUBTEST_1(fixedSizeMatrixConstruction<std::ptrdiff_t>());
- CALL_SUBTEST_2(casting());
+ CALL_SUBTEST_2(casting<0>());
}