This commit is contained in:
Miroslav Prasil 2018-11-13 21:38:56 +00:00
parent f3e6cc6ffd
commit dd684753d0

View File

@ -86,7 +86,7 @@ impl PartialOrd<i32> for UserOrgType {
fn gt(&self, other: &i32) -> bool {
match self.partial_cmp(other) {
Some(Ordering::Less) => false,
Some(Ordering::Less) | Some(Ordering::Equal) => false,
_ => true,
}
}