Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r59612 - in sandbox/statistics/detail/assign/boost/assign: . detail
From: erwann.rogard_at_[hidden]
Date: 2010-02-09 20:32:48


Author: e_r
Date: 2010-02-09 20:32:47 EST (Tue, 09 Feb 2010)
New Revision: 59612
URL: http://svn.boost.org/trac/boost/changeset/59612

Log:
m
Text files modified:
   sandbox/statistics/detail/assign/boost/assign/cref_list_of2.hpp | 4 ++--
   sandbox/statistics/detail/assign/boost/assign/detail/assign_value.hpp | 7 +------
   2 files changed, 3 insertions(+), 8 deletions(-)

Modified: sandbox/statistics/detail/assign/boost/assign/cref_list_of2.hpp
==============================================================================
--- sandbox/statistics/detail/assign/boost/assign/cref_list_of2.hpp (original)
+++ sandbox/statistics/detail/assign/boost/assign/cref_list_of2.hpp 2010-02-09 20:32:47 EST (Tue, 09 Feb 2010)
@@ -38,9 +38,9 @@
 // Revision history:
 // Feb 9, 2010 :
 // - Added copy semantics.
-// - The temporary array in conversion operator is now assigned by calling
+// - The temporary array in the conversion operator is now assigned by calling
 // begin() and end() rather than write_to_array() to ensure consistency of
-// side effect when assigning with rebind semantics. The loss of performance
+// side effect when assigning under rebind semantics. The loss of performance
 // is neligible in the test.
 // Feb 5, 2010 : First version. rebind semantics.
 //

Modified: sandbox/statistics/detail/assign/boost/assign/detail/assign_value.hpp
==============================================================================
--- sandbox/statistics/detail/assign/boost/assign/detail/assign_value.hpp (original)
+++ sandbox/statistics/detail/assign/boost/assign/detail/assign_value.hpp 2010-02-09 20:32:47 EST (Tue, 09 Feb 2010)
@@ -16,7 +16,7 @@
     // the rhs to the object pointed to.
     //
     // This is in contrast to assign_reference whose operator= rebinds the
- // address of the internal pointer. To that effect, call instead rebind()
+ // address of the internal pointer. To that effect,here, call rebind()
         template< class T >
     struct assign_value
     {
@@ -36,11 +36,6 @@
             return *ref_;
         }
 
- //template<typename T1>
- //operator T1()const{
- // return *ref_;
- //}
-
         void swap( assign_value& r )
         {
             std::swap( *ref_, *r.ref_ );


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