Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f6747b0

Browse files
committedMar 4, 2023
Remove note on references
1 parent 23d4d77 commit f6747b0

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed
 

‎library/core/src/ptr/mod.rs

-4
Original file line numberDiff line numberDiff line change
@@ -456,10 +456,6 @@ mod mut_ptr;
456456
/// dropped. Read operations may be UB based on library invariants of that type,
457457
/// for example reading the value pointed to by a dropped `Box<T>` is a use-after-free.
458458
///
459-
/// Having an `&` or `&mut` reference to the pointed-to value after calling [`drop_in_place()`]
460-
/// is still sound as long as it is not read from (in which case the soundness of the operation
461-
/// depends on the specific type).
462-
///
463459
/// Note that even if `T` has size `0`, the pointer must be non-null and properly aligned.
464460
///
465461
/// [valid]: self#safety

0 commit comments

Comments
 (0)
Please sign in to comment.