From 49e49b425dcc56438fdf1e4e6d42823bc629ab7f Mon Sep 17 00:00:00 2001 From: Skgland Date: Fri, 20 Feb 2026 22:47:08 +0100 Subject: [PATCH] fix clippy lint warning --- src/debray_allocator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debray_allocator.rs b/src/debray_allocator.rs index 30fae204..6988420f 100644 --- a/src/debray_allocator.rs +++ b/src/debray_allocator.rs @@ -106,7 +106,7 @@ impl BranchStack { let branch_num = self .last() .map(|occurrences| occurrences.current_branch_num.clone()) - .unwrap_or_else(|| BranchNumber::default()); + .unwrap_or_default(); BranchDesignator { branch_num } } -- 2.54.0