Skip to content

Commit

Permalink
run cargo dev update_lints
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan1729 committed Jul 27, 2020
1 parent 12a6eee commit 94b10a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion clippy_lints/src/derive.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use crate::utils::paths;
use crate::utils::{
get_trait_def_id, is_automatically_derived, is_copy, match_path, span_lint_and_help, span_lint_and_note, span_lint_and_then,
get_trait_def_id, is_automatically_derived, is_copy, match_path, span_lint_and_help, span_lint_and_note,
span_lint_and_then,
};
use if_chain::if_chain;
use rustc_hir::def_id::DefId;
Expand Down
2 changes: 1 addition & 1 deletion src/lintlist/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ pub static ref ALL_LINTS: Vec<Lint> = vec![
Lint {
name: "derive_ord_xor_partial_ord",
group: "correctness",
desc: "default lint description",
desc: "deriving `Ord` but implementing `PartialOrd` explicitly",
deprecation: None,
module: "derive",
},
Expand Down

0 comments on commit 94b10a6

Please sign in to comment.