Rename (grouped_)table_impl to table_unique/equiv

The old names don't make sense any more as either style can be used for
containers with equivalent keys, due to the use of node_algo.
This commit is contained in:
Daniel James
2017-04-15 17:35:08 +01:00
parent 972ac220f5
commit 97b68ea05e
5 changed files with 30 additions and 34 deletions

View File

@@ -1698,9 +1698,9 @@ template <typename N, typename T, typename A> class node_handle_set
BOOST_MOVABLE_BUT_NOT_COPYABLE(node_handle_set)
template <typename Types>
friend struct ::boost::unordered::detail::table_impl;
friend struct ::boost::unordered::detail::table_unique;
template <typename Types>
friend struct ::boost::unordered::detail::grouped_table_impl;
friend struct ::boost::unordered::detail::table_equiv;
typedef typename boost::unordered::detail::rebind_wrap<A, T>::type
value_allocator;