Skip to content

Commit 8129108

Browse files
authored
Rollup merge of rust-lang#81910 - jyn514:bootstrap-1.52, r=jackh726
Use format string in bootstrap panic instead of a string directly This fixes the following warning when compiling with nightly: ``` warning: panic message is not a string literal --> src/bootstrap/builder.rs:1515:24 | 1515 | panic!(out); | ^^^ | = note: `#[warn(non_fmt_panic)]` on by default = note: this is no longer accepted in Rust 2021 help: add a "{}" format string to Display the message | 1515 | panic!("{}", out); | ^^^^^ help: or use std::panic::panic_any instead | 1515 | std::panic::panic_any(out); | ^^^^^^^^^^^^^^^^^^^^^^ ``` Found while working on rust-lang#79540. cc rust-lang#81645, which landed in 1.51.
2 parents fff36f1 + 31c9339 commit 8129108

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/builder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1512,7 +1512,7 @@ impl<'a> Builder<'a> {
15121512
for el in stack.iter().rev() {
15131513
out += &format!("\t{:?}\n", el);
15141514
}
1515-
panic!(out);
1515+
panic!("{}", out);
15161516
}
15171517
if let Some(out) = self.cache.get(&step) {
15181518
self.verbose(&format!("{}c {:?}", " ".repeat(stack.len()), step));

0 commit comments

Comments
 (0)