Fixed many MSVC warnings.

This commit is contained in:
Hauke Heibel
2010-06-09 09:30:22 +02:00
parent 50e43bc75a
commit 45d3b405eb
7 changed files with 28 additions and 10 deletions

View File

@@ -55,7 +55,7 @@ void test_selfadjoint()
{
for(int i = 0; i < g_repeat ; i++)
{
EIGEN_UNUSED int s = ei_random<int>(1,20);
int s = ei_random<int>(1,20); EIGEN_UNUSED_VARIABLE(s);
CALL_SUBTEST_1( selfadjoint(Matrix<float, 1, 1>()) );
CALL_SUBTEST_2( selfadjoint(Matrix<float, 2, 2>()) );