diff --git a/libstdc++/stl/stl_construct.h b/libstdc++/stl/stl_construct.h index 0ce544c7eda..761784d57da 100644 --- a/libstdc++/stl/stl_construct.h +++ b/libstdc++/stl/stl_construct.h @@ -57,15 +57,15 @@ template inline void __destroy_aux(_ForwardIterator __first, _ForwardIterator __last, __false_type) { - for ( ; __first < __last; ++__first) + for ( ; __first != __last; ++__first) destroy(&*__first); } -template +template inline void __destroy_aux(_ForwardIterator, _ForwardIterator, __true_type) {} template -inline void +inline void __destroy(_ForwardIterator __first, _ForwardIterator __last, _Tp*) { typedef typename __type_traits<_Tp>::has_trivial_destructor