summaryrefslogtreecommitdiff
path: root/rust/src/low_level_il/instruction.rs
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-05-04 15:49:30 -0400
committerMason Reed <35282038+emesare@users.noreply.github.com>2025-05-12 17:45:24 -0400
commit16b6295afc4f7aee0e4aba4f2217b124524843d0 (patch)
treeb2e7478aee643b0f5902abd7a60aab856f4ea6f7 /rust/src/low_level_il/instruction.rs
parente180c955f9397849bdb1ea08f1e913ebac71ed5d (diff)
[Rust] Misc clippy lints
Diffstat (limited to 'rust/src/low_level_il/instruction.rs')
-rw-r--r--rust/src/low_level_il/instruction.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/low_level_il/instruction.rs b/rust/src/low_level_il/instruction.rs
index a1253df5..ded9c6f3 100644
--- a/rust/src/low_level_il/instruction.rs
+++ b/rust/src/low_level_il/instruction.rs
@@ -100,7 +100,7 @@ where
}
}
-impl<'func, M, F> Debug for LowLevelILInstruction<'func, M, F>
+impl<M, F> Debug for LowLevelILInstruction<'_, M, F>
where
M: FunctionMutability,
F: FunctionForm,