Skip to content

Commit

Permalink
Fix CirclePointIndex bug in debug mode for 32-bit archs
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewmilson committed May 19, 2024
1 parent 403c45c commit f070d14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/prover/src/core/circle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ impl Mul<usize> for CirclePointIndex {
type Output = Self;

fn mul(self, rhs: usize) -> Self::Output {
Self(self.0 * rhs).reduce()
Self(self.0.wrapping_mul(rhs)).reduce()
}
}

Expand Down

0 comments on commit f070d14

Please sign in to comment.