Skip to content

Commit

Permalink
Make FilteredAirBuilder's inner public
Browse files Browse the repository at this point in the history
To support extensions to custom `AirBuilder`s
  • Loading branch information
dlubarov committed Jan 26, 2024
1 parent 083074f commit 5773269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion air/src/air.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ pub trait PermutationAirBuilder: AirBuilder {
}

pub struct FilteredAirBuilder<'a, AB: AirBuilder> {
inner: &'a mut AB,
pub inner: &'a mut AB,
condition: AB::Expr,
}

Expand Down

0 comments on commit 5773269

Please sign in to comment.