]> git.proxmox.com Git - rustc.git/blobdiff - library/core/src/ptr/unique.rs
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / library / core / src / ptr / unique.rs
index 78647eee3389a3ee0d5a897b8af10fc8a3ced3b8..cd6afdccc29d7a5f2ad5fe2c1899203694d9545e 100644 (file)
@@ -4,8 +4,6 @@ use crate::marker::{PhantomData, Unsize};
 use crate::mem;
 use crate::ops::{CoerceUnsized, DispatchFromDyn};
 
-// ignore-tidy-undocumented-unsafe
-
 /// A wrapper around a raw non-null `*mut T` that indicates that the possessor
 /// of this wrapper owns the referent. Useful for building abstractions like
 /// `Box<T>`, `Vec<T>`, `String`, and `HashMap<K, V>`.