Remove explicit lifetime, caught by clippy.

This commit is contained in:
Isis Lovecruft 2017-05-27 18:23:31 +00:00
parent 044128dc58
commit 2485472023
Failed to extract signature

View file

@ -1181,7 +1181,7 @@ pub mod vartime {
impl Index<usize> for OddMultiples { impl Index<usize> for OddMultiples {
type Output = ProjectiveNielsPoint; type Output = ProjectiveNielsPoint;
fn index<'a>(&'a self, _index: usize) -> &'a ProjectiveNielsPoint { fn index(&self, _index: usize) -> &ProjectiveNielsPoint {
&(self.0[_index]) &(self.0[_index])
} }
} }