Skip to content

Commit

Permalink
style: fix clippy lifetime lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pjsier committed Dec 22, 2024
1 parent 4812420 commit b84c768
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pub struct KmlReader<B: BufRead, T: CoordType + FromStr + Default = f64> {
_phantom: PhantomData<T>,
}

impl<'a, T> KmlReader<&'a [u8], T>
impl<T> KmlReader<&[u8], T>
where
T: CoordType + FromStr + Default,
{
Expand Down

0 comments on commit b84c768

Please sign in to comment.