Fix a couple of warnings in unit tests.

This commit is contained in:
Gael Guennebaud
2013-07-05 13:35:34 +02:00
parent 7d8823c8b7
commit 9b9177f1ce
3 changed files with 5 additions and 3 deletions

View File

@@ -74,7 +74,8 @@ void test_jacobi()
// complex<float> is really important to test as it is the only way to cover conjugation issues in certain unaligned paths
CALL_SUBTEST_6(( jacobi<MatrixXcf, float>(MatrixXcf(r,c)) ));
CALL_SUBTEST_6(( jacobi<MatrixXcf, std::complex<float> >(MatrixXcf(r,c)) ));
(void) r;
(void) c;
TEST_SET_BUT_UNUSED_VARIABLE(r);
TEST_SET_BUT_UNUSED_VARIABLE(c);
}
}