From 22bfc771246e368121385eb149c29577c9599ee3 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Wed, 28 Jan 2009 12:48:19 +0000 Subject: [PATCH] move EIGEN_DEPRECATED to the begining of the function (pb with MSVC) --- Eigen/src/QR/QR.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. *