Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 2ad20da

Browse files
committed
Rollback CHANGELOG.md change
1 parent c214f51 commit 2ad20da

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6066,7 +6066,6 @@ Released 2018-09-13
60666066
[`size_of_in_element_count`]: https://rust-lang.github.io/rust-clippy/master/index.html#size_of_in_element_count
60676067
[`size_of_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#size_of_ref
60686068
[`skip_while_next`]: https://rust-lang.github.io/rust-clippy/master/index.html#skip_while_next
6069-
[`slice_as_bytes`]: https://rust-lang.github.io/rust-clippy/master/index.html#slice_as_bytes
60706069
[`slow_vector_initialization`]: https://rust-lang.github.io/rust-clippy/master/index.html#slow_vector_initialization
60716070
[`stable_sort_primitive`]: https://rust-lang.github.io/rust-clippy/master/index.html#stable_sort_primitive
60726071
[`std_instead_of_alloc`]: https://rust-lang.github.io/rust-clippy/master/index.html#std_instead_of_alloc

tests/ui/slice_as_bytes.fixed

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ fn main() {
3232

3333
let f = Foo;
3434
let bytes = f[0..4].as_bytes();
35-
}
35+
}

tests/ui/slice_as_bytes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ fn main() {
3333

3434
let f = Foo;
3535
let bytes = f[0..4].as_bytes();
36-
}
36+
}

0 commit comments

Comments
 (0)