From 89f468671dea2cc1dc37cdf75bbc7c7e56749bac Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Wed, 17 Dec 2008 14:30:01 +0000 Subject: * replace postfix ++ by prefix ++ wherever that makes sense in Eigen/ * fix some "unused variable" warnings in the tests; there remains a libstdc++ "deprecated" warning which I haven't looked much into --- Eigen/src/QR/QR.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Eigen/src/QR/QR.h') diff --git a/Eigen/src/QR/QR.h b/Eigen/src/QR/QR.h index c3fe96718..94b817a02 100644 --- a/Eigen/src/QR/QR.h +++ b/Eigen/src/QR/QR.h @@ -87,7 +87,7 @@ void QR::_compute(const MatrixType& matrix) int rows = matrix.rows(); int cols = matrix.cols(); - for (int k = 0; k < cols; k++) + for (int k = 0; k < cols; ++k) { int remainingSize = rows-k; -- cgit v1.2.3