mirror of
https://github.com/boostorg/container.git
synced 2025-08-02 22:14:26 +02:00
Fix compilation issues in detail/flat_tree.hpp.
This commit is contained in:
committed by
GitHub
parent
83bb62fed3
commit
33423d4301
@@ -1215,14 +1215,14 @@ 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()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user