$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r60205 - sandbox/statistics/detail/assign/boost/assign/auto_size/detail
From: erwann.rogard_at_[hidden]
Date: 2010-03-05 14:29:10
Author: e_r
Date: 2010-03-05 14:29:10 EST (Fri, 05 Mar 2010)
New Revision: 60205
URL: http://svn.boost.org/trac/boost/changeset/60205
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:10 EST (Fri, 05 Mar 2010)
@@ -112,7 +112,7 @@
         // Problem : internally calls range<K>(first). but K must be known
         // at compile time. Maybe some type erasure.
 
-		// private: // temporarily commented out
+        // private: // temporarily commented out
                 
         template<int K, class ForwardIterator >
         typename result_of::expr<T,N+K,Ref,P>::type 
@@ -124,11 +124,11 @@
         template<int K,typename ForwardIterator>
         typename result_of::expr<T,N+K,Ref,P>::type
                 next_impl(ForwardIterator first)const{
-        	typedef boost::mpl::int_<K> k_;
-        	return this->next_impl(k_(),first);	
+            typedef boost::mpl::int_<K> k_;
+            return this->next_impl(k_(),first);	
         }
 
-		// TODO BUG K>1 runtime error
+        // TODO BUG K>1 runtime error
         template<int K,typename ForwardIterator>
         typename result_of::expr<T,N+K,Ref,P>::type
                 next_impl(boost::mpl::int_<K>,ForwardIterator first)const{