Skip to content

Commit

Permalink
Merge pull request #3077 from matthiaskrgr/rustup_2
Browse files Browse the repository at this point in the history
fix clippy breakage due to rust-lang/rust#52602
  • Loading branch information
flip1995 authored Aug 23, 2018
2 parents e9c3d3d + c98987f commit dda6566
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clippy_lints/src/utils/sugg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ impl<'a> Sugg<'a> {
ast::ExprKind::Block(..) |
ast::ExprKind::Break(..) |
ast::ExprKind::Call(..) |
ast::ExprKind::Catch(..) |
ast::ExprKind::Continue(..) |
ast::ExprKind::Yield(..) |
ast::ExprKind::Field(..) |
Expand All @@ -122,6 +121,7 @@ impl<'a> Sugg<'a> {
ast::ExprKind::Ret(..) |
ast::ExprKind::Struct(..) |
ast::ExprKind::Try(..) |
ast::ExprKind::TryBlock(..) |
ast::ExprKind::Tup(..) |
ast::ExprKind::Array(..) |
ast::ExprKind::While(..) |
Expand Down

0 comments on commit dda6566

Please sign in to comment.