mirror of
https://github.com/boostorg/container.git
synced 2025-08-02 22:14:26 +02:00
Merge branch 'Breakthrough-patch-1' into develop
This commit is contained in:
@@ -1215,15 +1215,15 @@ class flat_tree
|
|||||||
template<class C2>
|
template<class C2>
|
||||||
BOOST_CONTAINER_FORCEINLINE void merge_unique(flat_tree<Value, KeyOfValue, C2, AllocatorOrContainer>& source)
|
BOOST_CONTAINER_FORCEINLINE void merge_unique(flat_tree<Value, KeyOfValue, C2, AllocatorOrContainer>& source)
|
||||||
{
|
{
|
||||||
this->insert( boost::make_move_iterator(source.begin())
|
this->insert_unique( boost::make_move_iterator(source.begin())
|
||||||
, boost::make_move_iterator(source.end()));
|
, boost::make_move_iterator(source.end()));
|
||||||
}
|
}
|
||||||
|
|
||||||
template<class C2>
|
template<class C2>
|
||||||
BOOST_CONTAINER_FORCEINLINE void merge_equal(flat_tree<Value, KeyOfValue, C2, AllocatorOrContainer>& source)
|
BOOST_CONTAINER_FORCEINLINE void merge_equal(flat_tree<Value, KeyOfValue, C2, AllocatorOrContainer>& source)
|
||||||
{
|
{
|
||||||
this->insert( boost::make_move_iterator(source.begin())
|
this->insert_equal( boost::make_move_iterator(source.begin())
|
||||||
, boost::make_move_iterator(source.end()));
|
, boost::make_move_iterator(source.end()));
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_CONTAINER_FORCEINLINE void merge_unique(flat_tree& source)
|
BOOST_CONTAINER_FORCEINLINE void merge_unique(flat_tree& source)
|
||||||
|
Reference in New Issue
Block a user