mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Fix some unused-variable warnings with GCC 4.6
This commit is contained in:
@@ -39,8 +39,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 = internal::random<Scalar>();
|
||||
while (internal::abs(s1)<1e-3) s1 = internal::random<Scalar>();
|
||||
|
||||
Reference in New Issue
Block a user