From 2692b30c66dca2f28361549fe7ccb02562fcd06b Mon Sep 17 00:00:00 2001 From: steven-omaha <35634100+steven-omaha@users.noreply.github.com> 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!() } }