minor improvements

This commit is contained in:
fourtf
2018-12-02 17:49:15 +01:00
parent 52dcc2130e
commit 0e242202a4
8 changed files with 35 additions and 24 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ struct SelectionItem {
bool operator>(const SelectionItem &b) const
{
return b.operator<(*this);
return !this->operator==(b) && b.operator<(*this);
}
bool operator==(const SelectionItem &b) const