Update of /cvsroot/boost/boost/boost/numeric/ublas
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv32311

Modified Files:
        matrix_proxy.hpp 
Log Message:
- fixed bug: removed wrong () in subslice


Index: matrix_proxy.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/numeric/ublas/matrix_proxy.hpp,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -d -r1.58 -r1.59
--- matrix_proxy.hpp    4 Feb 2006 15:13:25 -0000       1.58
+++ matrix_proxy.hpp    16 Apr 2007 21:58:23 -0000      1.59
@@ -4111,7 +4111,7 @@
     BOOST_UBLAS_INLINE
     matrix_slice<const M> subslice (const M &data, typename M::size_type 
start1, typename M::difference_type stride1, typename M::size_type size1, 
typename M::size_type start2, typename M::difference_type stride2, typename 
M::size_type size2) {
         typedef basic_slice<typename M::size_type, typename 
M::difference_type> slice_type;
-        return matrix_slice<const M> (data (), slice_type (start1, stride1, 
size1), slice_type (start2, stride2, size2));
+        return matrix_slice<const M> (data, slice_type (start1, stride1, 
size1), slice_type (start2, stride2, size2));
     }
 
     // Generic Projections


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to