Skip to content

Commit

Permalink
Apply new clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
meithecatte committed Dec 13, 2021
1 parent 198089f commit 3932a01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion enumflags_derive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ fn fold_expr(expr: &syn::Expr) -> Option<u128> {
}
}
Expr::Paren(syn::ExprParen { expr, .. }) | Expr::Group(syn::ExprGroup { expr, .. }) => {
fold_expr(&expr)
fold_expr(expr)
}
_ => None,
}
Expand Down

0 comments on commit 3932a01

Please sign in to comment.