Merge pull request #1910 from rhgg2/contact-less-than-antisymmetric
Make order relation on contacts antisymmetric
This commit is contained in:
@ -87,7 +87,7 @@ struct ContactInfoLessThan {
|
|||||||
if (ci1.personal != ci2.personal)
|
if (ci1.personal != ci2.personal)
|
||||||
return ci1.personal; // personal comes first
|
return ci1.personal; // personal comes first
|
||||||
|
|
||||||
if (ci1.last_seen > recently_)
|
if ((ci1.last_seen > recently_) != (ci2.last_seen > recently_))
|
||||||
return ci1.last_seen > ci2.last_seen;
|
return ci1.last_seen > ci2.last_seen;
|
||||||
|
|
||||||
if (ci1.freq != ci2.freq) // more frequent comes first
|
if (ci1.freq != ci2.freq) // more frequent comes first
|
||||||
|
|||||||
Reference in New Issue
Block a user