From 024c213f0f0d1cf77c29c6f2316398763c31ab0c Mon Sep 17 00:00:00 2001 From: oxalica Date: Thu, 8 Sep 2022 15:15:25 +0800 Subject: [PATCH] Stabilize waker_getters --- library/core/src/task/wake.rs | 6 +++--- library/core/tests/lib.rs | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/library/core/src/task/wake.rs b/library/core/src/task/wake.rs index 60ecc9c0bdb1c..0a192ee1aa993 100644 --- a/library/core/src/task/wake.rs +++ b/library/core/src/task/wake.rs @@ -47,7 +47,7 @@ impl RawWaker { /// Get the `data` pointer used to create this `RawWaker`. #[inline] #[must_use] - #[unstable(feature = "waker_getters", issue = "87021")] + #[stable(feature = "waker_getters", since = "CURRENT_RUSTC_VERSION")] pub fn data(&self) -> *const () { self.data } @@ -55,7 +55,7 @@ impl RawWaker { /// Get the `vtable` pointer used to create this `RawWaker`. #[inline] #[must_use] - #[unstable(feature = "waker_getters", issue = "87021")] + #[stable(feature = "waker_getters", since = "CURRENT_RUSTC_VERSION")] pub fn vtable(&self) -> &'static RawWakerVTable { self.vtable } @@ -318,7 +318,7 @@ impl Waker { /// Get a reference to the underlying [`RawWaker`]. #[inline] #[must_use] - #[unstable(feature = "waker_getters", issue = "87021")] + #[stable(feature = "waker_getters", since = "CURRENT_RUSTC_VERSION")] pub fn as_raw(&self) -> &RawWaker { &self.waker } diff --git a/library/core/tests/lib.rs b/library/core/tests/lib.rs index c315f3a797512..8f914bba40fb5 100644 --- a/library/core/tests/lib.rs +++ b/library/core/tests/lib.rs @@ -95,7 +95,6 @@ #![feature(unzip_option)] #![feature(const_array_from_ref)] #![feature(const_slice_from_ref)] -#![feature(waker_getters)] #![feature(slice_flatten)] #![feature(provide_any)] #![feature(utf8_chunks)]