[Bug libstdc++/48038] stable_sort problem with C++0x and comparator by value

redi at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Wed Mar 9 09:42:00 GMT 2011


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48038

--- Comment #3 from Jonathan Wakely <redi at gcc dot gnu.org> 2011-03-09 09:42:25 UTC ---
(In reply to comment #0)
> 
> #ifdef BYVALUE
> inline bool operator<(V rh, V lh) {
> #else
>  inline bool operator<(V const& rh, V const& lh) {
> #endif
>   return rh.v[0]<lh.v[0];

Changing this to use vector::at() results in an out_of_range exception



More information about the Gcc-bugs mailing list