aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/QR/ColPivHouseholderQR_MKL.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-12-11 10:55:07 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-12-11 10:55:07 +0100
commit79c1e6d0a63883cec691eaebcdbf0935ad557f70 (patch)
treeadbe9cdb88df674158c9f9d4e70ecc02cd13b21e /Eigen/src/QR/ColPivHouseholderQR_MKL.h
parent7ad1aaec1db2dbf1abfc19a5bb62626653fa48fb (diff)
Fix compilation of MKL support.
Diffstat (limited to 'Eigen/src/QR/ColPivHouseholderQR_MKL.h')
-rwxr-xr-x[-rw-r--r--]Eigen/src/QR/ColPivHouseholderQR_MKL.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/QR/ColPivHouseholderQR_MKL.h b/Eigen/src/QR/ColPivHouseholderQR_MKL.h
index 7b6ba0a5e..fce4df08c 100644..100755
--- a/Eigen/src/QR/ColPivHouseholderQR_MKL.h
+++ b/Eigen/src/QR/ColPivHouseholderQR_MKL.h
@@ -41,10 +41,10 @@ namespace Eigen {
/** \internal Specialization for the data types supported by MKL */
#define EIGEN_MKL_QR_COLPIV(EIGTYPE, MKLTYPE, MKLPREFIX, EIGCOLROW, MKLCOLROW) \
-template<> inline \
+template<> template<typename InputType> inline \
ColPivHouseholderQR<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW, Dynamic, Dynamic> >& \
ColPivHouseholderQR<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW, Dynamic, Dynamic> >::compute( \
- const Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW, Dynamic, Dynamic>& matrix) \
+ const EigenBase<InputType>& matrix) \
\
{ \
using std::abs; \