Fix some unused-variable warnings with GCC 4.6

This commit is contained in:
Benoit Jacob
2011-10-30 23:55:20 -04:00
parent 4477843bdd
commit 6a1caf0351
5 changed files with 7 additions and 5 deletions

View File

@@ -204,5 +204,7 @@ void test_eigensolver_selfadjoint()
s = internal::random<int>(1,EIGEN_TEST_MAX_SIZE/4);
CALL_SUBTEST_8(SelfAdjointEigenSolver<MatrixXf>(s));
CALL_SUBTEST_8(Tridiagonalization<MatrixXf>(s));
EIGEN_UNUSED_VARIABLE(s)
}