From 664222a4e2223e5b6505d027b36b4deebb9865ac Mon Sep 17 00:00:00 2001 From: Konrad Borowski Date: Mon, 1 Jun 2020 15:36:45 +0200 Subject: [PATCH] Remove allow missing_debug_implementations for MaybeUninit It already has a Debug implementation. --- src/libcore/mem/maybe_uninit.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libcore/mem/maybe_uninit.rs b/src/libcore/mem/maybe_uninit.rs index 01c97444ae3ae..499016545e967 100644 --- a/src/libcore/mem/maybe_uninit.rs +++ b/src/libcore/mem/maybe_uninit.rs @@ -214,7 +214,6 @@ use crate::mem::ManuallyDrop; /// remain `#[repr(transparent)]`. That said, `MaybeUninit` will *always* guarantee that it has /// the same size, alignment, and ABI as `T`; it's just that the way `MaybeUninit` implements that /// guarantee may evolve. -#[allow(missing_debug_implementations)] #[stable(feature = "maybe_uninit", since = "1.36.0")] // Lang item so we can wrap other types in it. This is useful for generators. #[lang = "maybe_uninit"]