Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r58674 - sandbox/numeric_bindings/boost/numeric/bindings
From: rutger_at_[hidden]
Date: 2010-01-04 09:02:57


Author: rutger
Date: 2010-01-04 09:02:56 EST (Mon, 04 Jan 2010)
New Revision: 58674
URL: http://svn.boost.org/trac/boost/changeset/58674

Log:
minor update to trans.hpp

Text files modified:
   sandbox/numeric_bindings/boost/numeric/bindings/trans.hpp | 7 ++++---
   1 files changed, 4 insertions(+), 3 deletions(-)

Modified: sandbox/numeric_bindings/boost/numeric/bindings/trans.hpp
==============================================================================
--- sandbox/numeric_bindings/boost/numeric/bindings/trans.hpp (original)
+++ sandbox/numeric_bindings/boost/numeric/bindings/trans.hpp 2010-01-04 09:02:56 EST (Mon, 04 Jan 2010)
@@ -15,6 +15,7 @@
 #include <boost/mpl/vector.hpp>
 #include <boost/numeric/bindings/begin.hpp>
 #include <boost/numeric/bindings/end.hpp>
+#include <boost/numeric/bindings/is_column_major.hpp>
 #include <boost/numeric/bindings/rank.hpp>
 #include <boost/numeric/bindings/size.hpp>
 #include <boost/numeric/bindings/tag.hpp>
@@ -54,9 +55,9 @@
         mpl::pair<
             tag::data_order,
             typename mpl::if_<
- is_row_major< T >,
- tag::column_major,
- tag::row_major >::type
+ is_column_major< T >,
+ tag::row_major,
+ tag::column_major >::type
>,
 
         // If T has a linear array:


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