Skip to content

Commit

Permalink
Adapt to new rustc
Browse files Browse the repository at this point in the history
  • Loading branch information
mgr-inz-rafal authored and flip1995 committed Dec 22, 2019
1 parent 43c398f commit ba537da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion clippy_lints/src/modulo_arithmetic.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
use crate::consts::{constant, Constant};
use crate::utils::{sext, span_help_and_lint};
use if_chain::if_chain;
use rustc::declare_lint_pass;
use rustc::hir::*;
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
use rustc::ty::{self};
use rustc::{declare_lint_pass, declare_tool_lint};
use rustc_session::declare_tool_lint;

declare_clippy_lint! {
/// **What it does:** Checks for modulo arithemtic.
Expand Down

0 comments on commit ba537da

Please sign in to comment.