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 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. *