Skip to content

Commit 1632f8f

Browse files
committed
Reword ManuallyDrop+Box interaction
1 parent 80f8aeb commit 1632f8f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

core/src/mem/manually_drop.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,9 @@ use crate::ptr;
4141
///
4242
/// # Interaction with `Box`
4343
///
44-
/// Currently, once the `Box<T>` inside a `ManuallyDrop<Box<T>>` is dropped,
45-
/// moving the `ManuallyDrop<Box<T>>` is [considered to be undefined
44+
/// Currently, if you have a `ManuallyDrop<T>`, where the type `T` is a `Box` or
45+
/// contains a `Box` inside, then dropping the `T` followed by moving the
46+
/// `ManuallyDrop<T>` is [considered to be undefined
4647
/// behavior](https://github.com/rust-lang/unsafe-code-guidelines/issues/245).
4748
/// That is, the following code causes undefined behavior:
4849
///

0 commit comments

Comments
 (0)