From 4aee801ec1c4ea42fa819ae3c87f3316f2d66ee5 Mon Sep 17 00:00:00 2001 From: Melody Horn Date: Thu, 10 Oct 2024 21:51:08 -0600 Subject: three years of dependency updates --- src/makefile/token.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/makefile/token.rs') diff --git a/src/makefile/token.rs b/src/makefile/token.rs index 2721387..418baf5 100644 --- a/src/makefile/token.rs +++ b/src/makefile/token.rs @@ -386,7 +386,7 @@ fn empty_tokens<'a, E: Err<'a>>(input: &'a str) -> IResult<&'a str, TokenString, fn fold_tokens<'a, E: Err<'a>>( parser: impl FnMut(&'a str) -> IResult<&'a str, TokenString, E>, ) -> impl FnMut(&'a str) -> IResult<&'a str, TokenString, E> { - fold_many1(parser, TokenString::empty(), |mut acc, x| { + fold_many1(parser, TokenString::empty, |mut acc, x| { acc.extend(x); acc }) -- cgit v1.2.3