This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug libstdc++/48038] stable_sort problem with C++0x and comparator by value
- From: "redi at gcc dot gnu.org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Wed, 9 Mar 2011 09:42:32 +0000
- Subject: [Bug libstdc++/48038] stable_sort problem with C++0x and comparator by value
- Auto-submitted: auto-generated
- References: <bug-48038-4@http.gcc.gnu.org/bugzilla/>
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