diff options
| author | Mason Reed <mason@vector35.com> | 2025-12-04 15:10:40 -0500 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-12-05 12:26:29 -0500 |
| commit | 6546844ca4274cd11ec2c91da7c6d7b5e8a82d0b (patch) | |
| tree | 7341b815993247cba9df7ea95585ce9723510fa0 /plugins/warp/src/lib.rs | |
| parent | 6eb12c3c3f53079a822881bf6e197105b25a0fe3 (diff) | |
[Rust] Fix misc clippy lints and warnings
These are introduced after changing to Rust 1.91.1
Diffstat (limited to 'plugins/warp/src/lib.rs')
| -rw-r--r-- | plugins/warp/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/warp/src/lib.rs b/plugins/warp/src/lib.rs index 9f40acef..1e622d58 100644 --- a/plugins/warp/src/lib.rs +++ b/plugins/warp/src/lib.rs @@ -254,7 +254,7 @@ pub fn basic_block_guid<M: FunctionMutability>( pub fn filtered_instructions_at<M: FunctionMutability>( il: &LowLevelILFunction<M, NonSSA>, addr: u64, -) -> Vec<LowLevelILInstruction<M, NonSSA>> { +) -> Vec<LowLevelILInstruction<'_, M, NonSSA>> { il.instructions_at(addr) .into_iter() .enumerate() |
