forked from boostorg/intrusive
Rename iterator_next with unsigned distance to iterator_unext
This commit is contained in:
@ -278,9 +278,9 @@ BOOST_INTRUSIVE_FORCEINLINE InputIt iterator_next(InputIt it, typename iterator_
|
|||||||
}
|
}
|
||||||
|
|
||||||
template<class InputIt>
|
template<class InputIt>
|
||||||
BOOST_INTRUSIVE_FORCEINLINE InputIt iterator_next(InputIt it, typename iterator_traits<InputIt>::size_type n)
|
BOOST_INTRUSIVE_FORCEINLINE InputIt iterator_unext(InputIt it, typename iterator_traits<InputIt>::size_type n)
|
||||||
{
|
{
|
||||||
(iterator_advance)(it, n);
|
(iterator_uadvance)(it, n);
|
||||||
return it;
|
return it;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user