Skip to content

Commit da8436e

Browse files
committed
refactor(polynomial): Un-elide confusing lifetimes
This will become a warning with one of the next updates of clippy. changelog: ignore
1 parent 7a998ce commit da8436e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

twenty-first/src/math/polynomial.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2115,7 +2115,9 @@ where
21152115
}
21162116
}
21172117

2118-
fn naive_coset_extrapolate_preprocessing(points: &[FF]) -> (ZerofierTree<FF>, Vec<FF>, usize) {
2118+
fn naive_coset_extrapolate_preprocessing(
2119+
points: &[FF],
2120+
) -> (ZerofierTree<'_, FF>, Vec<FF>, usize) {
21192121
let zerofier_tree = ZerofierTree::new_from_domain(points);
21202122
let (shift_coefficients, tail_length) =
21212123
Self::shift_factor_ntt_with_tail_length(&zerofier_tree.zerofier());

0 commit comments

Comments
 (0)