This is the mail archive of the
libstdc++@sourceware.cygnus.com
mailing list for the libstdc++ project.
Re: Is this a bug or lack of understanding?
- To: stephen at bregmasoft dot com
- Subject: Re: Is this a bug or lack of understanding?
- From: "Martin v. Loewis" <martin at loewis dot home dot cs dot tu-berlin dot de>
- Date: Wed, 19 Apr 2000 21:45:04 +0200
- CC: branko dot cibej at hermes dot si, Chris dot Picton at usko dot com, libstdc++ at sourceware dot cygnus dot com
- References: <200004182038.WAA06606@loewis.home.cs.tu-berlin.de> <00041909252100.28618@piggy>
> > struct s {
> > bool operator()(string s1, string s2) {
> > return (s1.size() < s2.size()
> > or (s1.size() == s2.size() and s1 < s2));
> > }
> > };
> With that comparison functoid you don't need a multimap. You've got
> a primary and a seconday collation. Original problem solved, QED.
Although I expected comments on my use of "alternate tokens", I got
none. Is everybody using 2.96 snapshots so they don't notice ?-)
Martin