aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/BandMatrix.h
diff options
context:
space:
mode:
authorGravatar Thomas Capricelli <orzel@freehackers.org>2011-07-07 22:20:04 +0200
committerGravatar Thomas Capricelli <orzel@freehackers.org>2011-07-07 22:20:04 +0200
commit08074843ac2f467a6204adf1fdeec32ee2aadbcd (patch)
treeae89f098fdbe6209cc7c2749bea5caa4ca1617a4 /Eigen/src/Core/BandMatrix.h
parentc52268c649ede35328c4927da523e5712b8e5002 (diff)
fix few warnings reported by clang
Diffstat (limited to 'Eigen/src/Core/BandMatrix.h')
-rw-r--r--Eigen/src/Core/BandMatrix.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Eigen/src/Core/BandMatrix.h b/Eigen/src/Core/BandMatrix.h
index dda8efba3..e7139d015 100644
--- a/Eigen/src/Core/BandMatrix.h
+++ b/Eigen/src/Core/BandMatrix.h
@@ -284,6 +284,7 @@ class BandMatrixWrapper : public BandMatrixBase<BandMatrixWrapper<_CoefficientsT
: m_coeffs(coeffs),
m_rows(rows), m_supers(supers), m_subs(subs)
{
+ EIGEN_UNUSED_VARIABLE(cols);
//internal::assert(coeffs.cols()==cols() && (supers()+subs()+1)==coeffs.rows());
}