From 0aaf56f5fc0f2d64f3202021d0b8d735007d7bcf Mon Sep 17 00:00:00 2001 From: moonheart08 Date: Tue, 8 Sep 2020 15:00:47 -0500 Subject: [PATCH] Remove a stray ignore-tidy-undocumented-unsafe There were no undocumented unsafe blocks in the file. --- library/core/src/ptr/unique.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/library/core/src/ptr/unique.rs b/library/core/src/ptr/unique.rs index 78647eee3389a..cd6afdccc29d7 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`, `Vec`, `String`, and `HashMap`.