From 16b6295afc4f7aee0e4aba4f2217b124524843d0 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Sun, 4 May 2025 15:49:30 -0400 Subject: [Rust] Misc clippy lints --- rust/src/low_level_il/block.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rust/src/low_level_il/block.rs') diff --git a/rust/src/low_level_il/block.rs b/rust/src/low_level_il/block.rs index 519c707e..fd3e7c81 100644 --- a/rust/src/low_level_il/block.rs +++ b/rust/src/low_level_il/block.rs @@ -51,7 +51,7 @@ where } } -impl<'func, M, F> Debug for LowLevelILBlock<'func, M, F> +impl Debug for LowLevelILBlock<'_, M, F> where M: FunctionMutability, F: FunctionForm, @@ -63,7 +63,7 @@ where } } -impl<'func, M, F> Clone for LowLevelILBlock<'func, M, F> +impl Clone for LowLevelILBlock<'_, M, F> where M: FunctionMutability, F: FunctionForm, -- cgit v1.3.1