From 0e84bf9bc450c0d127a5066277a8f219477980c4 Mon Sep 17 00:00:00 2001 From: timeshifter Date: Sat, 14 Jan 2023 18:20:19 +0100 Subject: [PATCH] fix lint --- src/grouping/section.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/grouping/section.rs b/src/grouping/section.rs index 130e037..bccc165 100644 --- a/src/grouping/section.rs +++ b/src/grouping/section.rs @@ -64,7 +64,7 @@ impl PartialOrd for Section { } impl Ord for Section { - fn cmp(&self, other: &Self) -> std::cmp::Ordering { + fn cmp(&self, _other: &Self) -> std::cmp::Ordering { todo!() } }