aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/selfadjoint.cpp
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2010-06-09 09:30:22 +0200
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2010-06-09 09:30:22 +0200
commit45d3b405eb1bd3f3f7f4f2043621a57e6bee1365 (patch)
treefc0626af00869c9382f04ec71afecfa1e3c2890a /test/selfadjoint.cpp
parent50e43bc75ad3cccc5e9755bac16c5023dd22eba4 (diff)
Fixed many MSVC warnings.
Diffstat (limited to 'test/selfadjoint.cpp')
-rw-r--r--test/selfadjoint.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/selfadjoint.cpp b/test/selfadjoint.cpp
index 2eaf6d459..1ea5a3a3c 100644
--- a/test/selfadjoint.cpp
+++ b/test/selfadjoint.cpp
@@ -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>()) );