Skip to content

Commit

Permalink
remove unnecessary clippy flags
Browse files Browse the repository at this point in the history
  • Loading branch information
kilic committed Dec 23, 2022
1 parent f46966c commit 3c96385
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/derive/field.rs
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,6 @@ macro_rules! field_specific {
(&$field([d0, d1, d2, d3])).sub(&$modulus)
}

#[allow(clippy::too_many_arguments)]
#[inline(always)]
pub(crate) const fn montgomery_reduce(r: &[u64; 8]) -> $field {
// The Montgomery reduction here is based on Algorithm 14.32 in
Expand Down Expand Up @@ -519,7 +518,6 @@ macro_rules! field_specific {
$field([d0, d1, d2, d3])
}

#[allow(clippy::too_many_arguments)]
#[inline(always)]
pub(crate) const fn montgomery_reduce(r: &[u64; 8]) -> Self {
// The Montgomery reduction here is based on Algorithm 14.32 in
Expand Down

0 comments on commit 3c96385

Please sign in to comment.