diff options
| author | bors <bors@rust-lang.org> | 2023-10-29 22:09:07 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-10-29 22:09:07 +0000 |
| commit | 739f9e2503ca1d608fc968586e0a35dd63c2823e (patch) | |
| tree | 56871581877f12478be739e4743ec97966654ada | |
| parent | fa6fd8c346ed5b83d3411880ff5f473a27e689eb (diff) | |
| parent | 2fea83b8c971ea75e704fc4814db988997911cf8 (diff) | |
| download | rust-739f9e2503ca1d608fc968586e0a35dd63c2823e.tar.gz rust-739f9e2503ca1d608fc968586e0a35dd63c2823e.zip | |
Auto merge of #11727 - dswij:read-zero-byte-vec-nursery, r=Centri3
move `read_zero_byte_vec` to nursery I think the concerns in #9274 are valid, and we should move this to nursery while we're reworking this. changelog: [`read_zero_byte_vec`] moved to nursery
| -rw-r--r-- | clippy_lints/src/read_zero_byte_vec.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/read_zero_byte_vec.rs b/clippy_lints/src/read_zero_byte_vec.rs index 71261ad275c..9405b49665e 100644 --- a/clippy_lints/src/read_zero_byte_vec.rs +++ b/clippy_lints/src/read_zero_byte_vec.rs @@ -42,7 +42,7 @@ declare_clippy_lint! { /// ``` #[clippy::version = "1.63.0"] pub READ_ZERO_BYTE_VEC, - correctness, + nursery, "checks for reads into a zero-length `Vec`" } declare_lint_pass!(ReadZeroByteVec => [READ_ZERO_BYTE_VEC]); |
