diff --git a/src/curve.rs b/src/curve.rs index 045da8c..2d91d38 100644 --- a/src/curve.rs +++ b/src/curve.rs @@ -1181,7 +1181,7 @@ pub mod vartime { impl Index for OddMultiples { type Output = ProjectiveNielsPoint; - fn index<'a>(&'a self, _index: usize) -> &'a ProjectiveNielsPoint { + fn index(&self, _index: usize) -> &ProjectiveNielsPoint { &(self.0[_index]) } }