Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9a669c4

Browse files
committedJan 11, 2020
Auto merge of #5040 - JohnTitor:rustup-0111, r=flip1995
Some rustups changelog: none
2 parents 43ac941 + 8a3a0ea commit 9a669c4

File tree

158 files changed

+389
-547
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

158 files changed

+389
-547
lines changed
 

‎clippy_lints/src/approx_const.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
use crate::utils::span_lint;
2-
use rustc::declare_lint_pass;
3-
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
2+
use rustc::lint::{LateContext, LateLintPass};
43
use rustc_hir::*;
5-
use rustc_session::declare_tool_lint;
4+
use rustc_session::{declare_lint_pass, declare_tool_lint};
65
use rustc_span::symbol;
76
use std::f64::consts as f64;
87
use syntax::ast::{FloatTy, LitFloatType, LitKind};

‎clippy_lints/src/arithmetic.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
use crate::consts::constant_simple;
22
use crate::utils::span_lint;
3-
use rustc::impl_lint_pass;
4-
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
3+
use rustc::lint::{LateContext, LateLintPass};
54
use rustc_hir as hir;
6-
use rustc_session::declare_tool_lint;
5+
use rustc_session::{declare_tool_lint, impl_lint_pass};
76
use rustc_span::source_map::Span;
87

98
declare_clippy_lint! {

0 commit comments

Comments
 (0)
Please sign in to comment.