Skip to content

Commit c63b634

Browse files
committed
Auto merge of rust-lang#3635 - matthiaskrgr:revert_random_state_3603, r=xfix
Revert the random_state lint. Remove the random_state lint until it or rustc has been fixed to no longer crash with debug assertions (see rust-lang#3628) We can't update clippy in the rustc repo because of this which is blocking nightlies because toolstate is already broken. fixes rust-lang#3628
2 parents 05467ab + 8ff4a1f commit c63b634

File tree

8 files changed

+1
-104
lines changed

8 files changed

+1
-104
lines changed

CHANGELOG.md

-1
Original file line numberDiff line numberDiff line change
@@ -814,7 +814,6 @@ All notable changes to this project will be documented in this file.
814814
[`ptr_offset_with_cast`]: https://rust-lang.github.io/rust-clippy/master/index.html#ptr_offset_with_cast
815815
[`pub_enum_variant_names`]: https://rust-lang.github.io/rust-clippy/master/index.html#pub_enum_variant_names
816816
[`question_mark`]: https://rust-lang.github.io/rust-clippy/master/index.html#question_mark
817-
[`random_state`]: https://rust-lang.github.io/rust-clippy/master/index.html#random_state
818817
[`range_minus_one`]: https://rust-lang.github.io/rust-clippy/master/index.html#range_minus_one
819818
[`range_plus_one`]: https://rust-lang.github.io/rust-clippy/master/index.html#range_plus_one
820819
[`range_step_by_zero`]: https://rust-lang.github.io/rust-clippy/master/index.html#range_step_by_zero

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
A collection of lints to catch common mistakes and improve your [Rust](https://github.com/rust-lang/rust) code.
99

10-
[There are 291 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html)
10+
[There are 290 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html)
1111

1212
We have a bunch of lint categories to allow you to choose how much Clippy is supposed to ~~annoy~~ help you:
1313

clippy_lints/src/lib.rs

-3
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,6 @@ pub mod precedence;
180180
pub mod ptr;
181181
pub mod ptr_offset_with_cast;
182182
pub mod question_mark;
183-
pub mod random_state;
184183
pub mod ranges;
185184
pub mod redundant_clone;
186185
pub mod redundant_field_names;
@@ -487,7 +486,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
487486
reg.register_late_lint_pass(box ptr_offset_with_cast::Pass);
488487
reg.register_late_lint_pass(box redundant_clone::RedundantClone);
489488
reg.register_late_lint_pass(box slow_vector_initialization::Pass);
490-
reg.register_late_lint_pass(box random_state::Pass);
491489

492490
reg.register_lint_group("clippy::restriction", Some("clippy_restriction"), vec![
493491
arithmetic::FLOAT_ARITHMETIC,
@@ -1027,7 +1025,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
10271025
fallible_impl_from::FALLIBLE_IMPL_FROM,
10281026
mutex_atomic::MUTEX_INTEGER,
10291027
needless_borrow::NEEDLESS_BORROW,
1030-
random_state::RANDOM_STATE,
10311028
redundant_clone::REDUNDANT_CLONE,
10321029
unwrap::PANICKING_UNWRAP,
10331030
unwrap::UNNECESSARY_UNWRAP,

clippy_lints/src/random_state.rs

-50
This file was deleted.

clippy_lints/src/utils/paths.rs

-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ pub const PATH_BUF: [&str; 3] = ["std", "path", "PathBuf"];
7373
pub const PATH_TO_PATH_BUF: [&str; 4] = ["std", "path", "Path", "to_path_buf"];
7474
pub const PTR_NULL: [&str; 2] = ["ptr", "null"];
7575
pub const PTR_NULL_MUT: [&str; 2] = ["ptr", "null_mut"];
76-
pub const RANDOM_STATE: [&str; 5] = ["std", "collections", "hash", "map", "RandomState"];
7776
pub const RANGE: [&str; 3] = ["core", "ops", "Range"];
7877
pub const RANGE_ARGUMENT_TRAIT: [&str; 3] = ["core", "ops", "RangeBounds"];
7978
pub const RANGE_FROM: [&str; 3] = ["core", "ops", "RangeFrom"];

tests/run-pass/used_underscore_binding_macro.rs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// except according to those terms.
99

1010
#![allow(clippy::useless_attribute)] //issue #2910
11-
#![allow(clippy::random_state)] // issue #3628
1211

1312
#[macro_use]
1413
extern crate serde_derive;

tests/ui/random_state.rs

-19
This file was deleted.

tests/ui/random_state.stderr

-28
This file was deleted.

0 commit comments

Comments
 (0)