mirror of
https://github.com/ETLCPP/etl.git
synced 2026-06-28 05:18:43 +08:00
Fix merge function duplication
This commit is contained in:
parent
50bc741d61
commit
d8546c5c17
@ -206,17 +206,6 @@ namespace etlstd
|
||||
return de;
|
||||
}
|
||||
|
||||
//***************************************************************************
|
||||
// reverse
|
||||
template<typename TIterator>
|
||||
void reverse(TIterator first, TIterator last)
|
||||
{
|
||||
while ((first != last) && (first != --last))
|
||||
{
|
||||
ETLSTD::swap(*first++, *last);
|
||||
}
|
||||
}
|
||||
|
||||
//***************************************************************************
|
||||
// move
|
||||
template <typename TIterator1, typename TIterator2>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user