Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
tcoratger committed Nov 20, 2024
1 parent ed6b4ea commit 8910695
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/brainfuck_prover/src/components/memory/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -249,10 +249,10 @@ impl MemoryColumn {
/// Returns the index of the column in the Memory table
pub const fn index(self) -> usize {
match self {
MemoryColumn::Clk => 0,
MemoryColumn::Mp => 1,
MemoryColumn::Mv => 2,
MemoryColumn::D => 3,
Self::Clk => 0,
Self::Mp => 1,
Self::Mv => 2,
Self::D => 3,
}
}

Expand Down

0 comments on commit 8910695

Please sign in to comment.