mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
Remove explicit lifetime, caught by clippy.
This commit is contained in:
parent
044128dc58
commit
2485472023
1 changed files with 1 additions and 1 deletions
|
|
@ -1181,7 +1181,7 @@ pub mod vartime {
|
|||
impl Index<usize> for OddMultiples {
|
||||
type Output = ProjectiveNielsPoint;
|
||||
|
||||
fn index<'a>(&'a self, _index: usize) -> &'a ProjectiveNielsPoint {
|
||||
fn index(&self, _index: usize) -> &ProjectiveNielsPoint {
|
||||
&(self.0[_index])
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue