diff options
| -rw-r--r-- | src/libcore/mem/maybe_uninit.rs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/libcore/mem/maybe_uninit.rs b/src/libcore/mem/maybe_uninit.rs index 9ce89f9669d..2e88db8df11 100644 --- a/src/libcore/mem/maybe_uninit.rs +++ b/src/libcore/mem/maybe_uninit.rs @@ -253,11 +253,8 @@ impl<T> MaybeUninit<T> { } /// A promotable constant, equivalent to `uninit()`. - #[unstable( - feature = "internal_uninit_const", - issue = "0", - reason = "hack to work around promotability", - )] + #[unstable(feature = "internal_uninit_const", issue = "0", + reason = "hack to work around promotability")] pub const UNINIT: Self = Self::uninit(); /// Creates a new `MaybeUninit<T>` in an uninitialized state, with the memory being |
