aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/QR
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-12-11 11:11:38 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-12-11 11:11:38 +0100
commit4519fd5d40031839ca8a9de4cc177bcbda95e360 (patch)
tree0c52b42ab66c5f0227beedc5016176cf65167817 /Eigen/src/QR
parent7385e6e2ef944a4be9464760066ab072ed315e1c (diff)
Fix MKL compilation issue
Diffstat (limited to 'Eigen/src/QR')
-rwxr-xr-xEigen/src/QR/ColPivHouseholderQR_MKL.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/QR/ColPivHouseholderQR_MKL.h b/Eigen/src/QR/ColPivHouseholderQR_MKL.h
index fce4df08c..1203d0d36 100755
--- a/Eigen/src/QR/ColPivHouseholderQR_MKL.h
+++ b/Eigen/src/QR/ColPivHouseholderQR_MKL.h
@@ -52,9 +52,9 @@ ColPivHouseholderQR<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW, Dynamic, Dynami
typedef MatrixType::RealScalar RealScalar; \
Index rows = matrix.rows();\
Index cols = matrix.cols();\
- Index size = matrix.diagonalSize();\
\
m_qr = matrix;\
+ Index size = m_qr.diagonalSize();\
m_hCoeffs.resize(size);\
\
m_colsTranspositions.resize(cols);\