Skip to content

Commit 63b2837

Browse files
committed
Fix lifetime elision warnings introduced by rustc 1.89
The just-released rustc 1.89 added a new `mismatched-lifetime-syntaxes` lint which had three new warnings pop up. We fix these here.
1 parent de2005a commit 63b2837

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ci/check-lint.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,8 @@ CLIPPY() {
107107
-A clippy::unnecessary_map_or `# to be removed once we hit MSRV 1.70` \
108108
-A clippy::manual_repeat_n `# to be removed once we hit MSRV 1.86` \
109109
-A clippy::io_other_error `# to be removed once we hit MSRV 1.74` \
110-
-A clippy::uninlined-format-args
110+
-A clippy::uninlined-format-args \
111+
-A clippy::mismatched-lifetime-syntaxes `# to be removed once we hit MSRV 1.89 (maybe even earlier)`
111112
}
112113

113114
CLIPPY

0 commit comments

Comments
 (0)