$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r60206 - sandbox/statistics/detail/assign/boost/assign/auto_size/detail
From: erwann.rogard_at_[hidden]
Date: 2010-03-05 14:29:50
Author: e_r
Date: 2010-03-05 14:29:49 EST (Fri, 05 Mar 2010)
New Revision: 60206
URL: http://svn.boost.org/trac/boost/changeset/60206
Log:
m
Text files modified: 
   sandbox/statistics/detail/assign/boost/assign/auto_size/detail/expr.hpp |     8 ++++----                                
   1 files changed, 4 insertions(+), 4 deletions(-)
Modified: sandbox/statistics/detail/assign/boost/assign/auto_size/detail/expr.hpp
==============================================================================
--- sandbox/statistics/detail/assign/boost/assign/auto_size/detail/expr.hpp	(original)
+++ sandbox/statistics/detail/assign/boost/assign/auto_size/detail/expr.hpp	2010-03-05 14:29:49 EST (Fri, 05 Mar 2010)
@@ -132,10 +132,10 @@
         template<int K,typename ForwardIterator>
         typename result_of::expr<T,N+K,Ref,P>::type
                 next_impl(boost::mpl::int_<K>,ForwardIterator first)const{
-        	// I thought the shared_ptr would solve the runtime error but not
-        	typedef boost::shared_ptr<result_type> shared_;
-			shared_ shared = shared_(new result_type(*this,*first));            
-        	return (*shared).next_impl<K-1>(boost::next(first));	
+            // I thought the shared_ptr would solve the runtime error but not
+            typedef boost::shared_ptr<result_type> shared_;
+            shared_ shared = shared_(new result_type(*this,*first));            
+            return (*shared).next_impl<K-1>(boost::next(first));	
         }
 
         template<typename ForwardIterator>