aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cholesky.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/cholesky.cpp
parent6a1caf0351824c0366b436d829309f7a558d2d6c (diff)
fix more variable-set-but-not-used warnings on gcc 4.6
Diffstat (limited to 'test/cholesky.cpp')
-rw-r--r--test/cholesky.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/cholesky.cpp b/test/cholesky.cpp
index 35f5a3b68..2b646e329 100644
--- a/test/cholesky.cpp
+++ b/test/cholesky.cpp
@@ -325,4 +325,6 @@ void test_cholesky()
// Test problem size constructors
CALL_SUBTEST_9( LLT<MatrixXf>(10) );
CALL_SUBTEST_9( LDLT<MatrixXf>(10) );
+
+ EIGEN_UNUSED_VARIABLE(s)
}