From 36a06931b3eac492eb1e609949e2cc5a3a03bf57 Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Tue, 30 Sep 2025 09:55:05 -0400 Subject: Fix rust api formatting warnings --- rust/src/low_level_il/function.rs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'rust/src/low_level_il/function.rs') diff --git a/rust/src/low_level_il/function.rs b/rust/src/low_level_il/function.rs index 6d2e4239..b473b64d 100644 --- a/rust/src/low_level_il/function.rs +++ b/rust/src/low_level_il/function.rs @@ -95,7 +95,10 @@ where } } - pub fn instruction_at>(&self, loc: L) -> Option> { + pub fn instruction_at>( + &self, + loc: L, + ) -> Option> { Some(LowLevelILInstruction::new( self, self.instruction_index_at(loc)?, @@ -103,7 +106,10 @@ where } /// Get all the instructions for a given location. - pub fn instructions_at>(&self, loc: L) -> Vec> { + pub fn instructions_at>( + &self, + loc: L, + ) -> Vec> { let loc = loc.into(); self.instruction_indexes_at(loc) .iter() -- cgit v1.3.1