Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r84592 - trunk/boost/numeric/ublas
From: david.bellot_at_[hidden]
Date: 2013-06-01 05:44:29


Author: david.bellot
Date: 2013-06-01 05:44:28 EDT (Sat, 01 Jun 2013)
New Revision: 84592
URL: http://svn.boost.org/trac/boost/changeset/84592

Log:
applied ticket 6010

Text files modified:
   trunk/boost/numeric/ublas/assignment.hpp | 20 ++++++++++----------
   trunk/boost/numeric/ublas/expression_types.hpp | 3 +--
   2 files changed, 11 insertions(+), 12 deletions(-)

Modified: trunk/boost/numeric/ublas/assignment.hpp
==============================================================================
--- trunk/boost/numeric/ublas/assignment.hpp (original)
+++ trunk/boost/numeric/ublas/assignment.hpp 2013-06-01 05:44:28 EDT (Sat, 01 Jun 2013)
@@ -451,7 +451,7 @@
 * \endcode
 * \sa begin2()
 */
-BOOST_UBLAS_INLINE begin1_manip begin1() {
+inline begin1_manip begin1() {
     return begin1_manip();
 }
 
@@ -495,7 +495,7 @@
 * \endcode
 * \sa begin1() begin2_manip
 */
-BOOST_UBLAS_INLINE begin2_manip begin2() {
+inline begin2_manip begin2() {
     return begin2_manip();
 }
 
@@ -540,7 +540,7 @@
 * \endcode
 * \sa next_column()
 */
-BOOST_UBLAS_INLINE next_row_manip next_row() {
+inline next_row_manip next_row() {
     return next_row_manip();
 }
 
@@ -584,7 +584,7 @@
 * \endcode
 *
 */
-BOOST_UBLAS_INLINE next_column_manip next_column() {
+inline next_column_manip next_column() {
     return next_column_manip();
 }
 
@@ -885,27 +885,27 @@
  // Traverse policy namespace
 namespace traverse_policy {
 
- by_row_policy<DEFAULT_WRAP_POLICY> by_row() {
+ inline by_row_policy<DEFAULT_WRAP_POLICY> by_row() {
     return by_row_policy<DEFAULT_WRAP_POLICY>();
     }
 
- by_row_policy<wrap> by_row_wrap() {
+ inline by_row_policy<wrap> by_row_wrap() {
         return by_row_policy<wrap>();
     }
 
- by_row_policy<no_wrap> by_row_no_wrap() {
+ inline by_row_policy<no_wrap> by_row_no_wrap() {
         return by_row_policy<no_wrap>();
     }
 
- by_column_policy<DEFAULT_WRAP_POLICY> by_column() {
+ inline by_column_policy<DEFAULT_WRAP_POLICY> by_column() {
         return by_column_policy<DEFAULT_WRAP_POLICY>();
     }
 
- by_column_policy<wrap> by_column_wrap() {
+ inline by_column_policy<wrap> by_column_wrap() {
         return by_column_policy<wrap>();
     }
 
- by_column_policy<no_wrap> by_column_no_wrap() {
+ inline by_column_policy<no_wrap> by_column_no_wrap() {
         return by_column_policy<no_wrap>();
     }
 

Modified: trunk/boost/numeric/ublas/expression_types.hpp
==============================================================================
--- trunk/boost/numeric/ublas/expression_types.hpp (original)
+++ trunk/boost/numeric/ublas/expression_types.hpp 2013-06-01 05:44:28 EDT (Sat, 01 Jun 2013)
@@ -1,5 +1,4 @@
-//
-// Copyright (c) 2000-2010
+// Copyright (c) 2000-2013
 // Joerg Walter, Mathias Koch. David Bellot
 //
 // Distributed under the Boost Software License, Version 1.0. (See


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