$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r59879 - in sandbox/statistics/detail/assign/boost/assign/auto_size: . detail
From: erwann.rogard_at_[hidden]
Date: 2010-02-24 18:15:28
Author: e_r
Date: 2010-02-24 18:15:27 EST (Wed, 24 Feb 2010)
New Revision: 59879
URL: http://svn.boost.org/trac/boost/changeset/59879
Log:
m
Text files modified: 
   sandbox/statistics/detail/assign/boost/assign/auto_size/detail/auto_size.hpp |     4 ++--                                    
   sandbox/statistics/detail/assign/boost/assign/auto_size/ref_list_of.hpp      |     2 +-                                      
   2 files changed, 3 insertions(+), 3 deletions(-)
Modified: sandbox/statistics/detail/assign/boost/assign/auto_size/detail/auto_size.hpp
==============================================================================
--- sandbox/statistics/detail/assign/boost/assign/auto_size/detail/auto_size.hpp	(original)
+++ sandbox/statistics/detail/assign/boost/assign/auto_size/detail/auto_size.hpp	2010-02-24 18:15:27 EST (Wed, 24 Feb 2010)
@@ -77,7 +77,7 @@
         typedef boost::mpl::int_<1> int_1_;
         typedef typename Ref<T>::type ref_;
 
-		public:       
+        public:       
         typedef typename boost::mpl::equal_to<int_n_,int_1_>::type is_first_;
         typedef typename boost::mpl::if_<is_first_,E,E&>::type previous_;
         typedef typename ref_array<T,N,Ref>::type ref_array_;
@@ -175,7 +175,7 @@
         typedef boost::shared_ptr<ref_array_> smart_ptr_;
         // Only the last of N expressions needs to instantiate an array, 
         // hence a pointer.
-		mutable smart_ptr_ ptr;
+        mutable smart_ptr_ ptr;
 
     };
             
Modified: sandbox/statistics/detail/assign/boost/assign/auto_size/ref_list_of.hpp
==============================================================================
--- sandbox/statistics/detail/assign/boost/assign/auto_size/ref_list_of.hpp	(original)
+++ sandbox/statistics/detail/assign/boost/assign/auto_size/ref_list_of.hpp	2010-02-24 18:15:27 EST (Wed, 24 Feb 2010)
@@ -18,7 +18,7 @@
 // BOOST_AUTO(tmp,ref_list_of(a)(b)(c)); boost::fill(tmp,d);
 //    
 // This function has the same side effect as ref_list_of<int>(), but supersedes
-// it as the number of elements deduced from the arguments. 
+// it as it deduces the number of elements, here 3, from the arguments. 
 //
 // Usage 3 binds d to a, b, c. Unless this specific feature is needed, function 
 // ref_copy_list_of() is more straightforward.