Adapt to Intrusive change that removed unneeded template parameters to tree_value_compare.

This commit is contained in:
Ion Gaztañaga
2016-08-29 16:53:17 +02:00
parent 819cb9f1ce
commit 9f9fdeaa9a
2 changed files with 51 additions and 49 deletions

View File

@@ -120,7 +120,7 @@ class map
<Key, value_type_impl, select_1st_t, Compare, Allocator, MapOptions> base_t;
typedef container_detail::pair <Key, T> movable_value_type_impl;
typedef container_detail::tree_value_compare
< Key, value_type_impl, Compare, select_1st_t> value_compare_impl;
<Compare, select_1st_t> value_compare_impl;
#endif //#ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
public:
@@ -1172,7 +1172,7 @@ class multimap
<Key, value_type_impl, select_1st_t, Compare, Allocator, MultiMapOptions> base_t;
typedef container_detail::pair <Key, T> movable_value_type_impl;
typedef container_detail::tree_value_compare
<Key, value_type_impl, Compare, select_1st_t> value_compare_impl;
<Compare, select_1st_t> value_compare_impl;
#endif //#ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
typedef ::boost::container::allocator_traits<Allocator> allocator_traits_type;