Skip to content

Commit

Permalink
cargo clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
xavi-pinsach committed Sep 10, 2024
1 parent 2714b5e commit 1c31df7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion common/src/air_instance_ctx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@ pub struct AirInstanceCtx<F> {
}

impl<F> AirInstanceCtx<F> {
pub fn new(air_group_id: usize, air_id: usize, air_segment_id: Option<usize>, prover_idx: usize, buffer: Option<Vec<F>>) -> Self {
pub fn new(
air_group_id: usize,
air_id: usize,
air_segment_id: Option<usize>,
prover_idx: usize,
buffer: Option<Vec<F>>,
) -> Self {
AirInstanceCtx {
air_group_id,
air_id,
Expand Down

0 comments on commit 1c31df7

Please sign in to comment.