Skip to content

Commit df15b28

Browse files
committedOct 12, 2021
Remove potentially unsound note on reconstructing a leaked Vec.
1 parent 129af04 commit df15b28

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed
 

‎library/alloc/src/vec/mod.rs

-3
Original file line numberDiff line numberDiff line change
@@ -1955,9 +1955,6 @@ impl<T, A: Allocator> Vec<T, A> {
19551955
/// As of Rust 1.57, this method does not reallocate or shrink the `Vec`,
19561956
/// so the leaked allocation may include unused capacity that is not part
19571957
/// of the returned slice.
1958-
/// Unsafe code that later reconstructs or deallocates the `Vec` (for
1959-
/// example, by calling [`Vec::from_raw_parts`]) must keep track of the
1960-
/// original capacity.
19611958
///
19621959
/// This function is mainly useful for data that lives for the remainder of
19631960
/// the program's life. Dropping the returned reference will cause a memory

0 commit comments

Comments
 (0)