aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/determinant.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2011-10-31 00:51:36 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2011-10-31 00:51:36 -0400
commit0609dbeec67df8f681afb34263c1be826831f534 (patch)
tree8fe219524dd2422b906432fbdd610f6818d0a003 /test/determinant.cpp
parent6a1caf0351824c0366b436d829309f7a558d2d6c (diff)
fix more variable-set-but-not-used warnings on gcc 4.6
Diffstat (limited to 'test/determinant.cpp')
-rw-r--r--test/determinant.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/determinant.cpp b/test/determinant.cpp
index eadc8c6b4..6c8d3baab 100644
--- a/test/determinant.cpp
+++ b/test/determinant.cpp
@@ -78,4 +78,5 @@ void test_determinant()
s = internal::random<int>(1,EIGEN_TEST_MAX_SIZE/4);
CALL_SUBTEST_6( determinant(MatrixXd(s, s)) );
}
+ EIGEN_UNUSED_VARIABLE(s)
}