Skip to content

Commit

Permalink
chore: clippy - set IOTableRow::new as const
Browse files Browse the repository at this point in the history
  • Loading branch information
zmalatrax committed Nov 12, 2024
1 parent af2861f commit 2e8997d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/brainfuck_prover/src/components/io/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pub struct IOTableRow {
}

impl IOTableRow {
pub fn new(mv: BaseField) -> Self {
pub const fn new(mv: BaseField) -> Self {
Self { mv }
}
}
Expand Down

0 comments on commit 2e8997d

Please sign in to comment.