From d50c2301d2b858713d924c072564994c12ad383b Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Fri, 9 May 2025 14:01:25 -0400 Subject: [Rust] Remove unneeded mut from Architecture trait signatures These are never expressed, just adds another unneeded constraint on the impl --- arch/riscv/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arch/riscv/src') diff --git a/arch/riscv/src/lib.rs b/arch/riscv/src/lib.rs index f43f9bd3..4e9e4783 100644 --- a/arch/riscv/src/lib.rs +++ b/arch/riscv/src/lib.rs @@ -1062,7 +1062,7 @@ impl Architecture for RiscVArch { &self, data: &[u8], addr: u64, - il: &mut MutableLiftedILFunction, + il: &MutableLiftedILFunction, ) -> Option<(usize, bool)> { let max_width = self.default_integer_size(); -- cgit v1.3.1