This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH] PR23358 Remove unused template parameter in _Destroy
- From: Thomas Kho <tkho at ucla dot edu>
- To: libstdc++ at gcc dot gnu dot org, gcc-patches at gcc dot gnu dot org
- Cc: dank at kegel dot com
- Date: Fri, 19 Aug 2005 14:27:54 -0700 (PDT)
- Subject: Re: [PATCH] PR23358 Remove unused template parameter in _Destroy
I apologize for the incorrect, and then blank attachments. One last time...
Thomas Kho
--- stl_construct.h 2005-08-19 12:06:11.961793000 -0700
+++ stl_construct.h_fixed 2005-08-19 12:06:31.676253000 -0700
@@ -174,7 +174,7 @@ namespace std
__alloc.destroy(&*__first);
}
- template<typename _ForwardIterator, typename _Allocator, typename _Tp>
+ template<typename _ForwardIterator, typename _Tp>
inline void
_Destroy(_ForwardIterator __first, _ForwardIterator __last,
allocator<_Tp>)