diff options
author | Gael Guennebaud <g.gael@free.fr> | 2009-01-28 12:48:19 +0000 |
---|---|---|
committer | Gael Guennebaud <g.gael@free.fr> | 2009-01-28 12:48:19 +0000 |
commit | 22bfc771246e368121385eb149c29577c9599ee3 (patch) | |
tree | 9a860431f52c83ce24d81c0297ad9e8110ebf9dd /Eigen/src/QR | |
parent | 0f15a8d82943a7dd5311ef52c7139e947b17e232 (diff) |
move EIGEN_DEPRECATED to the begining of the function (pb with MSVC)
Diffstat (limited to 'Eigen/src/QR')
-rw-r--r-- | Eigen/src/QR/QR.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/QR/QR.h b/Eigen/src/QR/QR.h index 0ea839d25..199d94307 100644 --- a/Eigen/src/QR/QR.h +++ b/Eigen/src/QR/QR.h @@ -62,7 +62,7 @@ template<typename MatrixType> class QR * \note Since the rank is computed only once, i.e. the first time it is needed, this * method almost does not perform any further computation. */ - bool isFullRank() const EIGEN_DEPRECATED { return rank() == m_qr.cols(); } + EIGEN_DEPRECATED bool isFullRank() const { return rank() == m_qr.cols(); } /** \returns the rank of the matrix of which *this is the QR decomposition. * |