summaryrefslogtreecommitdiff
path: root/rust/src/llil/function.rs
diff options
context:
space:
mode:
authorKyleMiles <krm504@nyu.edu>2023-01-05 17:29:14 -0500
committerKyleMiles <krm504@nyu.edu>2023-01-06 16:29:58 -0500
commita154e45cce79b0c2264c1e1cd37a3d1bf5bc6154 (patch)
tree11f436b720edfdf37819e9e83e7131d220687074 /rust/src/llil/function.rs
parent52edc39a7081fd6662e14fbcd473adabbbc36c7a (diff)
Rust API: Lots and lots of clippy changes
Diffstat (limited to 'rust/src/llil/function.rs')
-rw-r--r--rust/src/llil/function.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/rust/src/llil/function.rs b/rust/src/llil/function.rs
index 1c2b7df0..20d2cb04 100644
--- a/rust/src/llil/function.rs
+++ b/rust/src/llil/function.rs
@@ -103,7 +103,7 @@ where
use binaryninjacore_sys::BNLowLevelILGetInstructionStart;
let loc: Location = loc.into();
- let arch_handle = loc.arch.unwrap_or_else(|| *self.arch().as_ref());
+ let arch_handle = loc.arch.unwrap_or(*self.arch().as_ref());
unsafe {
let instr_idx = BNLowLevelILGetInstructionStart(self.handle, arch_handle.0, loc.addr);
@@ -113,7 +113,7 @@ where
} else {
Some(Instruction {
function: self,
- instr_idx: instr_idx,
+ instr_idx,
})
}
}
@@ -128,7 +128,7 @@ where
Instruction {
function: self,
- instr_idx: instr_idx,
+ instr_idx,
}
}
}