mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 12:57:38 +03:00
Pick up changes to non_exhaustive_omitted_patterns lint
warning: the lint level must be set on the whole match --> src/edit.rs:106:9 | 105 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] | ------------------------------- remove this attribute 106 | _ => None, | ^ | = help: it no longer has any effect to set the lint level on an individual match arm help: set the lint level on the whole match | 63 + #[deny(non_exhaustive_omitted_patterns)] 64 | match e { |
This commit is contained in:
parent
d864a1e9d8
commit
a9de781ddb
1 changed files with 2 additions and 2 deletions
|
@ -61,6 +61,8 @@ fn remove_doc_attributes(attrs: &mut Vec<Attribute>) {
|
|||
|
||||
fn attrs_mut(e: &mut Expr) -> Option<&mut Vec<Attribute>> {
|
||||
match e {
|
||||
#![cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))]
|
||||
|
||||
Expr::Array(ExprArray { attrs, .. })
|
||||
| Expr::Assign(ExprAssign { attrs, .. })
|
||||
| Expr::Async(ExprAsync { attrs, .. })
|
||||
|
@ -101,8 +103,6 @@ fn attrs_mut(e: &mut Expr) -> Option<&mut Vec<Attribute>> {
|
|||
| Expr::Yield(ExprYield { attrs, .. }) => Some(attrs),
|
||||
|
||||
Expr::Verbatim(_) => None,
|
||||
|
||||
#[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))]
|
||||
_ => None,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue