Skip to content

Commit

Permalink
Auto merge of #3585 - matthiaskrgr:rustup, r=phansch
Browse files Browse the repository at this point in the history
  • Loading branch information
bors committed Dec 27, 2018
2 parents 19af82c + 99454bc commit c10c515
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clippy_lints/src/write.rs
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ fn check_tts<'a>(cx: &EarlyContext<'a>, tts: &ThinTokenStream, is_write: bool) -
};
let tmp = fmtstr.clone();
let mut args = vec![];
let mut fmt_parser = Parser::new(&tmp, None);
let mut fmt_parser = Parser::new(&tmp, None, Vec::new(), false);
while let Some(piece) = fmt_parser.next() {
if !fmt_parser.errors.is_empty() {
return (None, expr);
Expand Down

0 comments on commit c10c515

Please sign in to comment.