We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83db3d9 commit e91056dCopy full SHA for e91056d
src/variable_versions/v9.rs
@@ -223,10 +223,10 @@ pub struct OptionsTemplate {
223
padding: Vec<u8>,
224
}
225
226
-fn parse_options_template_vec<'a>(
227
- i: &'a [u8],
+fn parse_options_template_vec(
+ i: &[u8],
228
flowset_length: u16,
229
-) -> IResult<&'a [u8], Vec<OptionsTemplate>> {
+) -> IResult<&[u8], Vec<OptionsTemplate>> {
230
let mut fields = vec![];
231
let mut remaining = i;
232
while let Ok((rem, data)) = OptionsTemplate::parse(remaining, flowset_length) {
0 commit comments