aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/linearstructure.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-12-17 19:28:54 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-12-17 19:28:54 +0100
commitaf4d8c5cecf1a1595dc601f2220ff3a8fd8d2957 (patch)
treed654ac10f6820fe4920e1ae4974b697aa3c08037 /test/linearstructure.cpp
parent4b70b4799807a790607e07aa4adb1d4337abc547 (diff)
a couple of fixes, now Array passes the linearstructure test
Diffstat (limited to 'test/linearstructure.cpp')
-rw-r--r--test/linearstructure.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/linearstructure.cpp b/test/linearstructure.cpp
index 3e570f2a0..7df5477b9 100644
--- a/test/linearstructure.cpp
+++ b/test/linearstructure.cpp
@@ -31,7 +31,6 @@ template<typename MatrixType> void linearStructure(const MatrixType& m)
*/
typedef typename MatrixType::Scalar Scalar;
- typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
int rows = m.rows();
int cols = m.cols();
@@ -95,5 +94,6 @@ void test_linearstructure()
CALL_SUBTEST_6( linearStructure(MatrixXf(8, 12)) );
CALL_SUBTEST_7( linearStructure(MatrixXi(8, 12)) );
CALL_SUBTEST_8( linearStructure(MatrixXcd(20, 20)) );
+ CALL_SUBTEST_9( linearStructure(ArrayXXf(12, 8)) );
}
}