about summary refs log tree commit diff
diff options
context:
space:
mode:
authormoonheart08 <moonheart08@users.noreply.github.com>2020-09-08 15:00:47 -0500
committermoonheart08 <moonheart08@users.noreply.github.com>2020-09-08 15:00:47 -0500
commit0aaf56f5fc0f2d64f3202021d0b8d735007d7bcf (patch)
tree48041770ae5ae75cab6ba1c1f76f4eea1499fe51
parent838325726a05855f10fbb6b3dc7165a7d8dde7b9 (diff)
downloadrust-0aaf56f5fc0f2d64f3202021d0b8d735007d7bcf.tar.gz
rust-0aaf56f5fc0f2d64f3202021d0b8d735007d7bcf.zip
Remove a stray ignore-tidy-undocumented-unsafe
There were no undocumented unsafe blocks in the file.
-rw-r--r--library/core/src/ptr/unique.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/library/core/src/ptr/unique.rs b/library/core/src/ptr/unique.rs
index 78647eee338..cd6afdccc29 100644
--- a/library/core/src/ptr/unique.rs
+++ b/library/core/src/ptr/unique.rs
@@ -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>`.