Merge pull request #3394 from phansch/rustup

Fix clippy build failure on latest master
This commit is contained in:
Manish Goregaokar
2018-11-01 13:57:27 -07:00
committed by GitHub
+2 -2
View File
@@ -424,7 +424,7 @@ fn bool_expr(&self, e: &Expr) {
improvements.push(suggestion);
}
}
let nonminimal_bool_lint = |suggestions| {
let nonminimal_bool_lint = |suggestions: Vec<_>| {
span_lint_and_then(
self.cx,
NONMINIMAL_BOOL,
@@ -434,7 +434,7 @@ fn bool_expr(&self, e: &Expr) {
db.span_suggestions_with_applicability(
e.span,
"try",
suggestions,
suggestions.into_iter(),
// nonminimal_bool can produce minimal but
// not human readable expressions (#3141)
Applicability::Unspecified,