Skip to content

Commit

Permalink
fix clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
breqdev authored Nov 10, 2023
1 parent ae61ef1 commit 193f37c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/cpu/execute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ pub trait Execute {
}

impl Execute for Mos6502 {
#[allow(clippy::manual-range-patterns)]

Check failure on line 11 in src/cpu/execute.rs

View workflow job for this annotation

GitHub Actions / Desktop Build and Style Check

expected one of `(`, `,`, `::`, or `=`, found `-`
fn execute(&mut self, opcode: u8) -> Result<u8, ()> {
match opcode {
// === LOAD ===
Expand Down

0 comments on commit 193f37c

Please sign in to comment.