mirror of
https://github.com/boostorg/container.git
synced 2025-08-03 06:24:26 +02:00
Restore indentation.
This commit is contained in:
committed by
GitHub
parent
33423d4301
commit
38b854b296
@@ -1216,14 +1216,14 @@ class flat_tree
|
|||||||
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_unique( 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_equal( 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