Commit 4f6478b7 by Ulrich Drepper

(__destroy_aux): Use != instead of < for ForwardIterator comparison.

From-SVN: r24792
parent 3240a1a2
......@@ -57,15 +57,15 @@ template <class _ForwardIterator>
inline void
__destroy_aux(_ForwardIterator __first, _ForwardIterator __last, __false_type)
{
for ( ; __first < __last; ++__first)
for ( ; __first != __last; ++__first)
destroy(&*__first);
}
template <class _ForwardIterator>
template <class _ForwardIterator>
inline void __destroy_aux(_ForwardIterator, _ForwardIterator, __true_type) {}
template <class _ForwardIterator, class _Tp>
inline void
inline void
__destroy(_ForwardIterator __first, _ForwardIterator __last, _Tp*)
{
typedef typename __type_traits<_Tp>::has_trivial_destructor
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment