diff options
author | Gael Guennebaud <g.gael@free.fr> | 2012-04-10 17:32:21 +0200 |
---|---|---|
committer | Gael Guennebaud <g.gael@free.fr> | 2012-04-10 17:32:21 +0200 |
commit | 51410975acbf713fe07a1573b4f04fafebb6f727 (patch) | |
tree | ddc30be5a6ad7ca0abbd9e3aa1c0fe159dbe8c9b /Eigen/src/QR | |
parent | b0cf95619e0777194fcc2d1337a39ef5357a4233 (diff) |
suppress extra ',' and ';'
Diffstat (limited to 'Eigen/src/QR')
-rw-r--r-- | Eigen/src/QR/ColPivHouseholderQR_MKL.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/QR/ColPivHouseholderQR_MKL.h b/Eigen/src/QR/ColPivHouseholderQR_MKL.h index 9cf4d2fae..c50ae24dd 100644 --- a/Eigen/src/QR/ColPivHouseholderQR_MKL.h +++ b/Eigen/src/QR/ColPivHouseholderQR_MKL.h @@ -79,7 +79,7 @@ ColPivHouseholderQR<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW, Dynamic, Dynami /*m_det_pq = (number_of_transpositions%2) ? -1 : 1; // TODO: It's not needed now; fix upon availability in Eigen */ \ \ return *this; \ -}; +} EIGEN_MKL_QR_COLPIV(double, double, d, ColMajor, LAPACK_COL_MAJOR) EIGEN_MKL_QR_COLPIV(float, float, s, ColMajor, LAPACK_COL_MAJOR) |