diff options
| author | Mason Reed <mason@vector35.com> | 2025-05-04 15:49:30 -0400 |
|---|---|---|
| committer | Mason Reed <35282038+emesare@users.noreply.github.com> | 2025-05-12 17:45:24 -0400 |
| commit | 16b6295afc4f7aee0e4aba4f2217b124524843d0 (patch) | |
| tree | b2e7478aee643b0f5902abd7a60aab856f4ea6f7 /rust/src/low_level_il/block.rs | |
| parent | e180c955f9397849bdb1ea08f1e913ebac71ed5d (diff) | |
[Rust] Misc clippy lints
Diffstat (limited to 'rust/src/low_level_il/block.rs')
| -rw-r--r-- | rust/src/low_level_il/block.rs | 4 |
1 files changed, 2 insertions, 2 deletions
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<M, F> 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<M, F> Clone for LowLevelILBlock<'_, M, F> where M: FunctionMutability, F: FunctionForm, |
