diff options
| author | Mason Reed <mason@vector35.com> | 2025-05-09 14:01:25 -0400 |
|---|---|---|
| committer | Mason Reed <35282038+emesare@users.noreply.github.com> | 2025-05-12 17:45:24 -0400 |
| commit | d50c2301d2b858713d924c072564994c12ad383b (patch) | |
| tree | c01b5e475143d8f7a63acda260a6d10c7ff24ada /arch/riscv/src | |
| parent | 2a9beeec15d3f32312a0c4f8ad5ddbcfcbc97a89 (diff) | |
[Rust] Remove unneeded mut from Architecture trait signatures
These are never expressed, just adds another unneeded constraint on the impl
Diffstat (limited to 'arch/riscv/src')
| -rw-r--r-- | arch/riscv/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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<D: RiscVDisassembler> Architecture for RiscVArch<D> { &self, data: &[u8], addr: u64, - il: &mut MutableLiftedILFunction, + il: &MutableLiftedILFunction, ) -> Option<(usize, bool)> { let max_width = self.default_integer_size(); |
