$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r60173 - in sandbox/statistics/detail/assign: boost/assign/auto_size/array libs/assign/example
From: erwann.rogard_at_[hidden]
Date: 2010-03-05 01:28:24
Author: e_r
Date: 2010-03-05 01:28:23 EST (Fri, 05 Mar 2010)
New Revision: 60173
URL: http://svn.boost.org/trac/boost/changeset/60173
Log:
m
Text files modified: 
   sandbox/statistics/detail/assign/boost/assign/auto_size/array/lazy.hpp   |     2 --                                      
   sandbox/statistics/detail/assign/boost/assign/auto_size/array/static.hpp |     4 ++--                                    
   sandbox/statistics/detail/assign/libs/assign/example/ref_list_of.cpp     |     2 +-                                      
   3 files changed, 3 insertions(+), 5 deletions(-)
Modified: sandbox/statistics/detail/assign/boost/assign/auto_size/array/lazy.hpp
==============================================================================
--- sandbox/statistics/detail/assign/boost/assign/auto_size/array/lazy.hpp	(original)
+++ sandbox/statistics/detail/assign/boost/assign/auto_size/array/lazy.hpp	2010-03-05 01:28:23 EST (Fri, 05 Mar 2010)
@@ -53,8 +53,6 @@
             template<typename> class Ref,typename P>
     void write_to_array(A& a,const expr<E,T,N,Ref,P>& e);
                   
-   // Policy for the collection builder, auto_size::expr<>, that exposes an 
-   // array interface
    template<typename T,int N,template<typename> class Ref,typename D>
    class lazy_array 
             : public array_interface<T,N,Ref,lazy_array<T,N,Ref,D> >
Modified: sandbox/statistics/detail/assign/boost/assign/auto_size/array/static.hpp
==============================================================================
--- sandbox/statistics/detail/assign/boost/assign/auto_size/array/static.hpp	(original)
+++ sandbox/statistics/detail/assign/boost/assign/auto_size/array/static.hpp	2010-03-05 01:28:23 EST (Fri, 05 Mar 2010)
@@ -26,8 +26,8 @@
     // as the result of functions that have the csv form :
     //  fun(a,b,c)
     // Unlike lazy_array, it is not a suitable policy for auto_size::expr<>. 
-    // This is desirable as otherwise the result from fun(a,b,c) would be 
-    // costlier to compute (this has already been tested).
+    // This is desirable as otherwise the result from fun(a,b,c) would be much
+    // costlier to construct (this has already been tested).
 
     template<typename T,int N,template<typename> class Ref>
     class static_array; 
Modified: sandbox/statistics/detail/assign/libs/assign/example/ref_list_of.cpp
==============================================================================
--- sandbox/statistics/detail/assign/libs/assign/example/ref_list_of.cpp	(original)
+++ sandbox/statistics/detail/assign/libs/assign/example/ref_list_of.cpp	2010-03-05 01:28:23 EST (Fri, 05 Mar 2010)
@@ -38,7 +38,7 @@
     
         {
                     ints.clear();
-            ints = cref_list_of_csv(a,b,3);     
+            ints = cref_list_of_csv(a,b,3);
                         std::copy(
                     boost::begin(ints),
                 boost::end(ints),