Remove unused variables in eigen2support.

This commit is contained in:
Gael Guennebaud
2014-12-11 14:26:19 +01:00
parent 15bff016d1
commit 58725ff08c
12 changed files with 10 additions and 48 deletions

View File

@@ -25,8 +25,7 @@ template<typename MatrixType> void linearStructure(const MatrixType& m)
// to test it, hence I consider that we will have tested Random.h
MatrixType m1 = MatrixType::Random(rows, cols),
m2 = MatrixType::Random(rows, cols),
m3(rows, cols),
mzero = MatrixType::Zero(rows, cols);
m3(rows, cols);
Scalar s1 = ei_random<Scalar>();
while (ei_abs(s1)<1e-3) s1 = ei_random<Scalar>();