$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r56606 - trunk/boost/numeric/ublas
From: guwi17_at_[hidden]
Date: 2009-10-05 17:57:02
Author: guwi17
Date: 2009-10-05 17:57:02 EDT (Mon, 05 Oct 2009)
New Revision: 56606
URL: http://svn.boost.org/trac/boost/changeset/56606
Log:
see #2872: boost/numeric/ublas/lu.hpp does not compile with GCC 4.3.2 64bit (Incomplete)
 * changed type of '''singular''' to '''size_type''' as suggested
Text files modified: 
   trunk/boost/numeric/ublas/lu.hpp |     6 +++---                                  
   1 files changed, 3 insertions(+), 3 deletions(-)
Modified: trunk/boost/numeric/ublas/lu.hpp
==============================================================================
--- trunk/boost/numeric/ublas/lu.hpp	(original)
+++ trunk/boost/numeric/ublas/lu.hpp	2009-10-05 17:57:02 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);