Skip to content

Commit

Permalink
fixed warning
Browse files Browse the repository at this point in the history
  • Loading branch information
zac-williamson committed Jul 24, 2024
1 parent 8125902 commit fde7e67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.nr
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ impl<let N: u64, Params> BigNumTrait for BigNum<N, Params> where Params: BigNumP
}

// n.b. needs to be declared unconstrained because we take in a mutable slice
unconstrained fn __batch_invert<let M: u64>(x: [Self; M]) -> [Self; M] {
fn __batch_invert<let M: u64>(x: [Self; M]) -> [Self; M] {
Params::get_instance().__batch_invert(x)
}

Expand Down

0 comments on commit fde7e67

Please sign in to comment.