Merge pull request #334 from dtolnay/underscorevar

Remove format var parsing workaround that targeted rustc 1.40 and older
This commit is contained in:
David Tolnay 2024-10-31 21:25:19 -07:00 committed by GitHub
commit a1882b2a75
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -93,11 +93,6 @@ impl Display<'_> {
if formatvar.to_string().starts_with("r#") {
formatvar = format_ident!("r_{}", formatvar);
}
if formatvar.to_string().starts_with('_') {
// Work around leading underscore being rejected by 1.40 and
// older compilers. https://github.com/rust-lang/rust/pull/66847
formatvar = format_ident!("field_{}", formatvar);
}
out += &formatvar.to_string();
if !named_args.insert(formatvar.clone()) {
// Already specified in the format argument list.