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

From-SVN: r24792
This commit is contained in:
Ulrich Drepper 1999-01-20 18:04:49 +00:00
parent 3240a1a2d2
commit 4f6478b760
1 changed files with 3 additions and 3 deletions

View File

@ -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);
}