Boost logo

Boost :

From: Rene Rivera (grafik.list_at_[hidden])
Date: 2004-07-18 08:18:56


At least one problem can be fixed on this library... It uses std::slist
instead of looking for slist in the extensions namespace:

===================================================================
RCS file: /cvsroot/boost/boost/boost/assign/std/slist.hpp,v
retrieving revision 1.1
diff -u -r1.1 slist.hpp
--- slist.hpp 29 Jun 2004 01:16:50 -0000 1.1
+++ slist.hpp 18 Jul 2004 13:13:03 -0000
@@ -28,8 +28,8 @@
  {

      template< class V, class A, class V2 >
- inline list_inserter< assign_detail::call_push_back<
std::slist<V,A> >, V >
- operator+=( std::slist<V,A>& c, V2 v )
+ inline list_inserter< assign_detail::call_push_back<
BOOST_STD_EXTENSION_NAMESPACE::slist<V,A> >, V >
+ operator+=( BOOST_STD_EXTENSION_NAMESPACE::slist<V,A>& c, V2 v )
      {
          return push_back( c )( v );
      }
===================================================================

OK to commit?

-- 
-- Grafik - Don't Assume Anything
-- Redshift Software, Inc. - http://redshift-software.com
-- rrivera/acm.org - grafik/redshift-software.com - 102708583/icq

Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk