Skip to content

Commit c10c515

Browse files
committed
Auto merge of #3585 - matthiaskrgr:rustup, r=phansch
rustup rust-lang/rust#57069
2 parents 19af82c + 99454bc commit c10c515

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clippy_lints/src/write.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ fn check_tts<'a>(cx: &EarlyContext<'a>, tts: &ThinTokenStream, is_write: bool) -
292292
};
293293
let tmp = fmtstr.clone();
294294
let mut args = vec![];
295-
let mut fmt_parser = Parser::new(&tmp, None);
295+
let mut fmt_parser = Parser::new(&tmp, None, Vec::new(), false);
296296
while let Some(piece) = fmt_parser.next() {
297297
if !fmt_parser.errors.is_empty() {
298298
return (None, expr);

0 commit comments

Comments
 (0)