Skip to content

Commit

Permalink
elide lifetime in parse_include
Browse files Browse the repository at this point in the history
  • Loading branch information
kailan committed Jul 9, 2024
1 parent 4a9e679 commit 33636d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esi/src/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ where
Ok(())
}

fn parse_include<'a, 'b>(elem: &'a BytesStart) -> Result<Event<'b>> {
fn parse_include<'a>(elem: &BytesStart) -> Result<Event<'a>> {
let src = match elem
.attributes()
.flatten()
Expand Down

0 comments on commit 33636d3

Please sign in to comment.