Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r59192 - sandbox/numeric_bindings/boost/numeric/bindings/mtl
From: rutger_at_[hidden]
Date: 2010-01-21 06:55:09


Author: rutger
Date: 2010-01-21 06:55:09 EST (Thu, 21 Jan 2010)
New Revision: 59192
URL: http://svn.boost.org/trac/boost/changeset/59192

Log:
fixed size_type2 in mtl dense2D

Text files modified:
   sandbox/numeric_bindings/boost/numeric/bindings/mtl/dense2D.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: sandbox/numeric_bindings/boost/numeric/bindings/mtl/dense2D.hpp
==============================================================================
--- sandbox/numeric_bindings/boost/numeric/bindings/mtl/dense2D.hpp (original)
+++ sandbox/numeric_bindings/boost/numeric/bindings/mtl/dense2D.hpp 2010-01-21 06:55:09 EST (Thu, 21 Jan 2010)
@@ -26,7 +26,7 @@
 
 template< std::size_t Rows, std::size_t Cols >
 struct mtl_matrix_size_type< mtl::fixed::dimensions< Rows, Cols >, 1 > {
- typedef mpl::int_< Rows > type;
+ typedef mpl::int_< Cols > type;
 };
 
 template< std::size_t Rows, std::size_t Cols >


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