Urg hrtb hell again.

This commit is contained in:
Tom Alexander 2022-11-26 19:39:00 -05:00
parent 45904044e3
commit d3b49a6835
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
1 changed files with 5 additions and 1 deletions

View File

@ -35,7 +35,11 @@ use nom::IResult;
use tracing::instrument;
use tracing::trace;
fn context_many_till<'r, M, T>(
fn context_many_till<
'r,
M: for<'s> Fn(&'s str) -> IResult<&'s str, TextElement<'s>, VerboseError<&'s str>>,
T: for<'s> Fn(&'s str) -> IResult<&'s str, &'s str, VerboseError<&'s str>>,
>(
context: &'r OrgModeContextNode<'r>,
many_matcher: M,
till_matcher: T,