(__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,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