From f6242ed07a77f78a4cbacce6a5fab003e27470b3 Mon Sep 17 00:00:00 2001 From: Brooke Chalmers Date: Thu, 9 Nov 2023 22:30:13 -0500 Subject: [PATCH] ignore new clippy lint --- src/cpu/fetch.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cpu/fetch.rs b/src/cpu/fetch.rs index bdfa514d..d4afd398 100644 --- a/src/cpu/fetch.rs +++ b/src/cpu/fetch.rs @@ -45,6 +45,7 @@ impl Fetch for Mos6502 { } } + #[allow(clippy::manual_range_patterns)] fn fetch_operand_address(&mut self, opcode: u8) -> (u16, u8) { match opcode & 0x1F { 0x00 | 0x02 | 0x09 | 0x0B => panic!("Immediate operand has no address"),