]> git.lizzy.rs Git - rust.git/commitdiff
Remove a stray ignore-tidy-undocumented-unsafe
authormoonheart08 <moonheart08@users.noreply.github.com>
Tue, 8 Sep 2020 20:00:47 +0000 (15:00 -0500)
committermoonheart08 <moonheart08@users.noreply.github.com>
Tue, 8 Sep 2020 20:00:47 +0000 (15:00 -0500)
There were no undocumented unsafe blocks in the file.

library/core/src/ptr/unique.rs

index 78647eee3389a3ee0d5a897b8af10fc8a3ced3b8..cd6afdccc29d7a5f2ad5fe2c1899203694d9545e 100644 (file)
@@ -4,8 +4,6 @@
 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>`.