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 12, 2024
1 parent 79d4eb3 commit e6948f4
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 e6948f4

Please sign in to comment.