Skip to content

Commit f483676

Browse files
committed
Deprecate mem_discriminant_non_enum
This lint has been uplifted and is now included in enum_intrinsics_non_enums.
1 parent 59b186d commit f483676

14 files changed

+15
-314
lines changed

src/tools/clippy/CHANGELOG.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1873,10 +1873,10 @@ Released 2019-01-17
18731873

18741874
[2e26fdc2...b2601be](https://github.com/rust-lang/rust-clippy/compare/2e26fdc2...b2601be)
18751875

1876-
* New lints: [`slow_vector_initialization`], [`mem_discriminant_non_enum`],
1876+
* New lints: [`slow_vector_initialization`], `mem_discriminant_non_enum`,
18771877
[`redundant_clone`], [`wildcard_dependencies`],
18781878
[`into_iter_on_ref`], `into_iter_on_array`, [`deprecated_cfg_attr`],
1879-
[`mem_discriminant_non_enum`], [`cargo_common_metadata`]
1879+
[`cargo_common_metadata`]
18801880
* Add support for `u128` and `i128` to integer related lints
18811881
* Add float support to `mistyped_literal_suffixes`
18821882
* Fix false positives in `use_self`
@@ -2839,7 +2839,6 @@ Released 2018-09-13
28392839
[`match_wild_err_arm`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_wild_err_arm
28402840
[`match_wildcard_for_single_variants`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_wildcard_for_single_variants
28412841
[`maybe_infinite_iter`]: https://rust-lang.github.io/rust-clippy/master/index.html#maybe_infinite_iter
2842-
[`mem_discriminant_non_enum`]: https://rust-lang.github.io/rust-clippy/master/index.html#mem_discriminant_non_enum
28432842
[`mem_forget`]: https://rust-lang.github.io/rust-clippy/master/index.html#mem_forget
28442843
[`mem_replace_option_with_none`]: https://rust-lang.github.io/rust-clippy/master/index.html#mem_replace_option_with_none
28452844
[`mem_replace_with_default`]: https://rust-lang.github.io/rust-clippy/master/index.html#mem_replace_with_default

src/tools/clippy/clippy_lints/src/lib.register_all.rs

-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,6 @@ store.register_group(true, "clippy::all", Some("clippy_all"), vec![
127127
LintId::of(matches::REDUNDANT_PATTERN_MATCHING),
128128
LintId::of(matches::SINGLE_MATCH),
129129
LintId::of(matches::WILDCARD_IN_OR_PATTERNS),
130-
LintId::of(mem_discriminant::MEM_DISCRIMINANT_NON_ENUM),
131130
LintId::of(mem_replace::MEM_REPLACE_OPTION_WITH_NONE),
132131
LintId::of(mem_replace::MEM_REPLACE_WITH_DEFAULT),
133132
LintId::of(mem_replace::MEM_REPLACE_WITH_UNINIT),

src/tools/clippy/clippy_lints/src/lib.register_correctness.rs

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ store.register_group(true, "clippy::correctness", Some("clippy_correctness"), ve
3636
LintId::of(loops::ITER_NEXT_LOOP),
3737
LintId::of(loops::NEVER_LOOP),
3838
LintId::of(loops::WHILE_IMMUTABLE_CONDITION),
39-
LintId::of(mem_discriminant::MEM_DISCRIMINANT_NON_ENUM),
4039
LintId::of(mem_replace::MEM_REPLACE_WITH_UNINIT),
4140
LintId::of(methods::CLONE_DOUBLE_REF),
4241
LintId::of(methods::ITERATOR_STEP_BY_ZERO),

src/tools/clippy/clippy_lints/src/lib.register_lints.rs

-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,6 @@ store.register_lints(&[
241241
matches::SINGLE_MATCH_ELSE,
242242
matches::WILDCARD_ENUM_MATCH_ARM,
243243
matches::WILDCARD_IN_OR_PATTERNS,
244-
mem_discriminant::MEM_DISCRIMINANT_NON_ENUM,
245244
mem_forget::MEM_FORGET,
246245
mem_replace::MEM_REPLACE_OPTION_WITH_NONE,
247246
mem_replace::MEM_REPLACE_WITH_DEFAULT,

src/tools/clippy/clippy_lints/src/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,6 @@ mod map_unit_fn;
266266
mod match_on_vec_items;
267267
mod match_result_ok;
268268
mod matches;
269-
mod mem_discriminant;
270269
mod mem_forget;
271270
mod mem_replace;
272271
mod methods;
@@ -600,7 +599,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
600599
let doc_valid_idents = conf.doc_valid_idents.iter().cloned().collect::<FxHashSet<_>>();
601600
store.register_late_pass(move || Box::new(doc::DocMarkdown::new(doc_valid_idents.clone())));
602601
store.register_late_pass(|| Box::new(neg_multiply::NegMultiply));
603-
store.register_late_pass(|| Box::new(mem_discriminant::MemDiscriminant));
604602
store.register_late_pass(|| Box::new(mem_forget::MemForget));
605603
store.register_late_pass(|| Box::new(arithmetic::Arithmetic::default()));
606604
store.register_late_pass(|| Box::new(assign_ops::AssignOps));
@@ -850,6 +848,7 @@ pub fn register_renamed(ls: &mut rustc_lint::LintStore) {
850848
ls.register_renamed("clippy::panic_params", "non_fmt_panics");
851849
ls.register_renamed("clippy::unknown_clippy_lints", "unknown_lints");
852850
ls.register_renamed("clippy::invalid_atomic_ordering", "invalid_atomic_ordering");
851+
ls.register_renamed("clippy::mem_discriminant_non_enum", "enum_intrinsics_non_enums");
853852
}
854853

855854
// only exists to let the dogfood integration test works.

src/tools/clippy/clippy_lints/src/mem_discriminant.rs

-82
This file was deleted.

src/tools/clippy/tests/ui/mem_discriminant.fixed

-45
This file was deleted.

src/tools/clippy/tests/ui/mem_discriminant.rs

-45
This file was deleted.

src/tools/clippy/tests/ui/mem_discriminant.stderr

-94
This file was deleted.

src/tools/clippy/tests/ui/mem_discriminant_unfixable.rs

-16
This file was deleted.

src/tools/clippy/tests/ui/mem_discriminant_unfixable.stderr

-20
This file was deleted.

src/tools/clippy/tests/ui/rename.fixed

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#![allow(clippy::redundant_static_lifetimes)]
99
// warn for the old lint name here, to test if the renaming worked
1010
#![warn(clippy::cognitive_complexity)]
11+
#![warn(enum_intrinsics_non_enums)]
1112

1213
#[warn(clippy::module_name_repetitions)]
1314
fn main() {}

src/tools/clippy/tests/ui/rename.rs

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#![allow(clippy::redundant_static_lifetimes)]
99
// warn for the old lint name here, to test if the renaming worked
1010
#![warn(clippy::cyclomatic_complexity)]
11+
#![warn(clippy::mem_discriminant_non_enum)]
1112

1213
#[warn(clippy::stutter)]
1314
fn main() {}

0 commit comments

Comments
 (0)