mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 21:37:57 +03:00
Merge pull request #334 from dtolnay/underscorevar
Remove format var parsing workaround that targeted rustc 1.40 and older
This commit is contained in:
commit
a1882b2a75
1 changed files with 0 additions and 5 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue