From b371af43d11a4bc0fc855fa2ba8cc1df34e029fa Mon Sep 17 00:00:00 2001 From: Michael Stevens Date: Thu, 20 Oct 2005 09:19:41 +0000 Subject: [PATCH] =?UTF-8?q?FIX=20coordinate=5Fmatrix=20pop=5Fback=20type,?= =?UTF-8?q?=20should=20be=20filled=5F=20Thanks=20to=20Markus=20Sch=C3=83?= =?UTF-8?q?=C2=B6pflin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/boost/numeric/ublas/matrix_sparse.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/numeric/ublas/matrix_sparse.hpp b/include/boost/numeric/ublas/matrix_sparse.hpp index 6788dc0b..3bb02f95 100644 --- a/include/boost/numeric/ublas/matrix_sparse.hpp +++ b/include/boost/numeric/ublas/matrix_sparse.hpp @@ -4308,7 +4308,7 @@ namespace boost { namespace numeric { namespace ublas { BOOST_UBLAS_CHECK (filled_ > 0, external_logic ()); -- filled_; sorted_filled_ = (std::min) (sorted_filled_, filled_); - sorted_ = sorted_filled_ = filled; + sorted_ = sorted_filled_ = filled_; storage_invariants (); }