Update contrib.
1 // Boost.Assign library
3 // Copyright Thorsten Ottosen 2003-2004. Use, modification and
4 // distribution is subject to the Boost Software License, Version
5 // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6 // http://www.boost.org/LICENSE_1_0.txt)
8 // For more information, see http://www.boost.org/libs/assign/
12 #ifndef BOOST_ASSIGN_STD_SET_HPP
13 #define BOOST_ASSIGN_STD_SET_HPP
15 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
19 #include <boost/assign/list_inserter.hpp>
20 #include <boost/config.hpp>
27 template< class K, class C, class A, class K2 >
28 inline list_inserter< assign_detail::call_insert< std::set<K,C,A> >, K >
29 operator+=( std::set<K,C,A>& c, K2 k )
31 return insert( c )( k );
34 template< class K, class C, class A, class K2 >
35 inline list_inserter< assign_detail::call_insert< std::multiset<K,C,A> >, K >
36 operator+=( std::multiset<K,C,A>& c, K2 k )
38 return insert( c )( k );