$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: nesotto_at_[hidden]
Date: 2008-06-04 11:29:06
Author: nesotto
Date: 2008-06-04 11:29:05 EDT (Wed, 04 Jun 2008)
New Revision: 46116
URL: http://svn.boost.org/trac/boost/changeset/46116
Log:
comparison predicates and stream support for better integration with Boost.Test
Text files modified: 
   trunk/boost/assign/list_inserter.hpp |     4 ----                                    
   trunk/boost/assign/list_of.hpp       |     2 +-                                      
   2 files changed, 1 insertions(+), 5 deletions(-)
Modified: trunk/boost/assign/list_inserter.hpp
==============================================================================
--- trunk/boost/assign/list_inserter.hpp	(original)
+++ trunk/boost/assign/list_inserter.hpp	2008-06-04 11:29:05 EDT (Wed, 04 Jun 2008)
@@ -203,10 +203,6 @@
         template< class Nullary_function >
         list_inserter& operator=( const assign_detail::fun_repeater<Nullary_function>& r )
         {
-            //BOOST_STATIC_ASSERT( function_traits<Nullary_function>::arity == 0 );
-            //BOOST_STATIC_ASSERT( is_convertible< BOOST_DEDUCED_TYPENAME function_traits<
-            //                      Nullary_function>::result_type >,T>::value );
-
             return operator,( r );
         }
         
Modified: trunk/boost/assign/list_of.hpp
==============================================================================
--- trunk/boost/assign/list_of.hpp	(original)
+++ trunk/boost/assign/list_of.hpp	2008-06-04 11:29:05 EDT (Wed, 04 Jun 2008)
@@ -321,7 +321,7 @@
     operator<<( std::basic_ostream<Elem, Traits>& Os,
                 const converter<T,I>& r )
     {
-        return Os << ::boost::make_iterator_range( r.begin(),  r.end() );
+        return Os << ::boost::make_iterator_range( r.begin(), r.end() );
     }
     
     /////////////////////////////////////////////////////////////////////////