libstdc++/4532

Craig Rodrigues rodrigc@mediaone.net
Sun Oct 14 11:47:00 GMT 2001


http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view&pr=4532&database=gcc

Hi,

Can someone please apply this patch to mainline so that
I can close PR 4532?

2001-10-04  Brendan Kehoe  <brendan@zen.org>
 
	* bits/stl_algo.h (partial_sort): Add missing `>' on the
	template parameter _ValueType.


Index: stl_algo.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/bits/stl_algo.h,v
retrieving revision 1.11
diff -u -r1.11 stl_algo.h
--- stl_algo.h	2001/07/20 01:17:13	1.11
+++ stl_algo.h	2001/10/14 05:11:59
@@ -1952,7 +1952,7 @@
       // concept requirements
       __glibcpp_function_requires(_Mutable_RandomAccessIteratorConcept<
 	    _RandomAccessIter>);
-      __glibcpp_function_requires(_LessThanComparableConcept<_ValueType);
+      __glibcpp_function_requires(_LessThanComparableConcept<_ValueType>);
     
       make_heap(__first, __middle);
       for (_RandomAccessIter __i = __middle; __i < __last; ++__i)
-- 
Craig Rodrigues        
http://www.gis.net/~craigr    
rodrigc@mediaone.net          



More information about the Libstdc++ mailing list