aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/CholmodSupport
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2013-06-09 21:03:32 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2013-06-09 21:03:32 +0200
commite04b59929e45564dbbc80f4e1482892458983ac0 (patch)
treee150435b969e836a04afc4bff48588da2ca7b9e8 /Eigen/src/CholmodSupport
parentb3adc4face5c7855fd63d8f6f96f6a8f63dc40c4 (diff)
fix unused variable warning
Diffstat (limited to 'Eigen/src/CholmodSupport')
-rw-r--r--Eigen/src/CholmodSupport/CholmodSupport.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Eigen/src/CholmodSupport/CholmodSupport.h b/Eigen/src/CholmodSupport/CholmodSupport.h
index 42d289ad8..d4008e63d 100644
--- a/Eigen/src/CholmodSupport/CholmodSupport.h
+++ b/Eigen/src/CholmodSupport/CholmodSupport.h
@@ -312,6 +312,7 @@ class CholmodBase : internal::noncopyable
{
eigen_assert(m_factorizationIsOk && "The decomposition is not in a valid state for solving, you must first call either compute() or symbolic()/numeric()");
const Index size = m_cholmodFactor->n;
+ EIGEN_UNUSED_VARIABLE(size);
eigen_assert(size==b.rows());
// note: cs stands for Cholmod Sparse