Skip to content

Commit

Permalink
Fix new clippy lint 'explicit lifetimes could be elided'
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrutar committed Dec 7, 2024
1 parent dfb82ee commit eb2e46f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/boxcar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ pub struct ParIter<'v, T> {
start: u32,
vec: &'v Vec<T>,
}
impl<'v, T> ParIter<'v, T> {
impl<T> ParIter<'_, T> {
pub fn end(&self) -> u32 {
self.end
}
Expand Down

0 comments on commit eb2e46f

Please sign in to comment.