inline format!() args up to and including rustc_middle
This commit is contained in:
parent
2e0136a131
commit
23815467a2
87 changed files with 378 additions and 437 deletions
|
@ -159,7 +159,7 @@ impl Emitter for JsonEmitter {
|
|||
}
|
||||
.and_then(|_| self.dst.flush());
|
||||
if let Err(e) = result {
|
||||
panic!("failed to print diagnostics: {:?}", e);
|
||||
panic!("failed to print diagnostics: {e:?}");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -172,7 +172,7 @@ impl Emitter for JsonEmitter {
|
|||
}
|
||||
.and_then(|_| self.dst.flush());
|
||||
if let Err(e) = result {
|
||||
panic!("failed to print notification: {:?}", e);
|
||||
panic!("failed to print notification: {e:?}");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -194,7 +194,7 @@ impl Emitter for JsonEmitter {
|
|||
}
|
||||
.and_then(|_| self.dst.flush());
|
||||
if let Err(e) = result {
|
||||
panic!("failed to print future breakage report: {:?}", e);
|
||||
panic!("failed to print future breakage report: {e:?}");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -208,7 +208,7 @@ impl Emitter for JsonEmitter {
|
|||
}
|
||||
.and_then(|_| self.dst.flush());
|
||||
if let Err(e) = result {
|
||||
panic!("failed to print unused externs: {:?}", e);
|
||||
panic!("failed to print unused externs: {e:?}");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue