Skip to content

Commit

Permalink
relax input bounds on length_count
Browse files Browse the repository at this point in the history
  • Loading branch information
Geal committed Nov 24, 2020
1 parent e07ec9b commit 36fabd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/multi/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1090,7 +1090,7 @@ where
#[cfg(feature = "alloc")]
pub fn length_count<I, O, N, E, F, G>(mut f: F, mut g: G) -> impl FnMut(I) -> IResult<I, Vec<O>, E>
where
I: Clone + InputLength + InputTake,
I: Clone,
N: ToUsize,
F: Parser<I, N, E>,
G: Parser<I, O, E>,
Expand Down

0 comments on commit 36fabd7

Please sign in to comment.