1
0
Fork 0
mirror of https://codeberg.org/demostf/parser.git synced 2026-06-03 18:24:05 +02:00

clippy fix

This commit is contained in:
Robin Appelman 2023-12-24 20:40:44 +01:00 committed by Bash
commit 6c961c239a

View file

@ -25,7 +25,7 @@ impl Eq for GameEventDefinition {}
impl PartialOrd for GameEventDefinition {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
self.id.partial_cmp(&other.id)
Some(self.id.cmp(&other.id))
}
}