summaryrefslogtreecommitdiff
path: root/rust/src/low_level_il/lifting.rs
diff options
context:
space:
mode:
authorJosh Ferrell <josh@vector35.com>2025-09-30 09:55:05 -0400
committerJosh Ferrell <josh@vector35.com>2025-09-30 09:55:05 -0400
commit36a06931b3eac492eb1e609949e2cc5a3a03bf57 (patch)
tree2aa9d79f83a84d8a82a78fb5921c909f4f8e42d2 /rust/src/low_level_il/lifting.rs
parentfd5a89e174e01b0adb089dcf8f6da36cf5008443 (diff)
Fix rust api formatting warnings
Diffstat (limited to 'rust/src/low_level_il/lifting.rs')
-rw-r--r--rust/src/low_level_il/lifting.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/rust/src/low_level_il/lifting.rs b/rust/src/low_level_il/lifting.rs
index 09117150..91a3b53e 100644
--- a/rust/src/low_level_il/lifting.rs
+++ b/rust/src/low_level_il/lifting.rs
@@ -1016,7 +1016,11 @@ impl LowLevelILMutableFunction {
LowLevelILExpression::new(self, LowLevelExpressionIndex(expr_idx))
}
- pub fn const_ptr_sized(&self, size: usize, val: u64) -> LowLevelILMutableExpression<'_, ValueExpr> {
+ pub fn const_ptr_sized(
+ &self,
+ size: usize,
+ val: u64,
+ ) -> LowLevelILMutableExpression<'_, ValueExpr> {
use binaryninjacore_sys::BNLowLevelILAddExpr;
use binaryninjacore_sys::BNLowLevelILOperation::LLIL_CONST_PTR;