Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r56608 - in branches/release: boost/numeric/ublas libs/numeric/ublas
From: guwi17_at_[hidden]
Date: 2009-10-05 18:02:13


Author: guwi17
Date: 2009-10-05 18:02:13 EDT (Mon, 05 Oct 2009)
New Revision: 56608
URL: http://svn.boost.org/trac/boost/changeset/56608

Log:
fix #2872: (possible compile failure)
 * merged [56606] into release

Properties modified:
   branches/release/boost/numeric/ublas/ (props changed)
   branches/release/libs/numeric/ublas/ (props changed)
Text files modified:
   branches/release/boost/numeric/ublas/lu.hpp | 6 +++---
   1 files changed, 3 insertions(+), 3 deletions(-)

Modified: branches/release/boost/numeric/ublas/lu.hpp
==============================================================================
--- branches/release/boost/numeric/ublas/lu.hpp (original)
+++ branches/release/boost/numeric/ublas/lu.hpp 2009-10-05 18:02:13 EDT (Mon, 05 Oct 2009)
@@ -95,7 +95,7 @@
 #if BOOST_UBLAS_TYPE_CHECK
         matrix_type cm (m);
 #endif
- int singular = 0;
+ size_type singular = 0;
         size_type size1 = m.size1 ();
         size_type size2 = m.size2 ();
         size_type size = (std::min) (size1, size2);
@@ -131,7 +131,7 @@
 #if BOOST_UBLAS_TYPE_CHECK
         matrix_type cm (m);
 #endif
- int singular = 0;
+ size_type singular = 0;
         size_type size1 = m.size1 ();
         size_type size2 = m.size2 ();
         size_type size = (std::min) (size1, size2);
@@ -175,7 +175,7 @@
 #if BOOST_UBLAS_TYPE_CHECK
         matrix_type cm (m);
 #endif
- int singular = 0;
+ size_type singular = 0;
         size_type size1 = m.size1 ();
         size_type size2 = m.size2 ();
         size_type size = (std::min) (size1, size2);


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk