forked from boostorg/unordered
Remove the grouped node stuff
This commit is contained in:
@@ -457,14 +457,12 @@ template <class T, class H, class P, class A> class unordered_set
|
||||
void merge(boost::unordered_set<T, H2, P2, A>&& source);
|
||||
#endif
|
||||
|
||||
#if BOOST_UNORDERED_INTEROPERABLE_NODES
|
||||
template <typename H2, typename P2>
|
||||
void merge(boost::unordered_multiset<T, H2, P2, A>& source);
|
||||
|
||||
#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
|
||||
template <typename H2, typename P2>
|
||||
void merge(boost::unordered_multiset<T, H2, P2, A>&& source);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
// observers
|
||||
@@ -962,14 +960,12 @@ template <class T, class H, class P, class A> class unordered_multiset
|
||||
void merge(boost::unordered_multiset<T, H2, P2, A>&& source);
|
||||
#endif
|
||||
|
||||
#if BOOST_UNORDERED_INTEROPERABLE_NODES
|
||||
template <typename H2, typename P2>
|
||||
void merge(boost::unordered_set<T, H2, P2, A>& source);
|
||||
|
||||
#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
|
||||
template <typename H2, typename P2>
|
||||
void merge(boost::unordered_set<T, H2, P2, A>&& source);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
// observers
|
||||
@@ -1322,7 +1318,6 @@ void unordered_set<T, H, P, A>::merge(
|
||||
}
|
||||
#endif
|
||||
|
||||
#if BOOST_UNORDERED_INTEROPERABLE_NODES
|
||||
template <class T, class H, class P, class A>
|
||||
template <typename H2, typename P2>
|
||||
void unordered_set<T, H, P, A>::merge(
|
||||
@@ -1340,7 +1335,6 @@ void unordered_set<T, H, P, A>::merge(
|
||||
table_.merge_unique(source.table_);
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
// lookup
|
||||
|
||||
@@ -1732,7 +1726,6 @@ void unordered_multiset<T, H, P, A>::merge(
|
||||
}
|
||||
#endif
|
||||
|
||||
#if BOOST_UNORDERED_INTEROPERABLE_NODES
|
||||
template <class T, class H, class P, class A>
|
||||
template <typename H2, typename P2>
|
||||
void unordered_multiset<T, H, P, A>::merge(
|
||||
@@ -1754,7 +1747,6 @@ void unordered_multiset<T, H, P, A>::merge(
|
||||
}
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
// lookup
|
||||
|
||||
|
Reference in New Issue
Block a user