From e04b59929e45564dbbc80f4e1482892458983ac0 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Sun, 9 Jun 2013 21:03:32 +0200 Subject: [PATCH] fix unused variable warning --- Eigen/src/CholmodSupport/CholmodSupport.h | 1 + 1 file changed, 1 insertion(+) 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