aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/inverse.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/inverse.cpp')
-rw-r--r--test/inverse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/inverse.cpp b/test/inverse.cpp
index f0c69e78c..81702432f 100644
--- a/test/inverse.cpp
+++ b/test/inverse.cpp
@@ -41,7 +41,6 @@ template<typename MatrixType> void inverse(const MatrixType& m)
MatrixType m1(rows, cols),
m2(rows, cols),
- mzero = MatrixType::Zero(rows, cols),
identity = MatrixType::Identity(rows, rows);
createRandomPIMatrixOfRank(rows,rows,rows,m1);
m2 = m1.inverse();
@@ -114,4 +113,5 @@ void test_inverse()
CALL_SUBTEST_7( inverse(Matrix4d()) );
CALL_SUBTEST_7( inverse(Matrix<double,4,4,DontAlign>()) );
}
+ EIGEN_UNUSED_VARIABLE(s)
}