Commit 4f6478b7 by Ulrich Drepper

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

From-SVN: r24792
parent 3240a1a2
......@@ -57,7 +57,7 @@ template <class _ForwardIterator>
inline void
__destroy_aux(_ForwardIterator __first, _ForwardIterator __last, __false_type)
{
for ( ; __first < __last; ++__first)
for ( ; __first != __last; ++__first)
destroy(&*__first);
}
......
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