about summary refs log tree commit diff
path: root/library/core/src/task
diff options
context:
space:
mode:
authory86-dev <y86-dev@protonmail.com>2022-09-19 15:07:12 +0200
committery86-dev <y86-dev@protonmail.com>2022-09-19 15:07:12 +0200
commit8e848dc23f7c5e809553dc81072178c34066cc77 (patch)
tree59c4d4c4c49df6e00c5aa5f5a6c7baa5521d44eb /library/core/src/task
parent9a78faba7169dc2cdf6dc08c744a92c36e71e8d0 (diff)
downloadrust-8e848dc23f7c5e809553dc81072178c34066cc77.tar.gz
rust-8e848dc23f7c5e809553dc81072178c34066cc77.zip
Added tracking issue
Diffstat (limited to 'library/core/src/task')
-rw-r--r--library/core/src/task/wake.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/core/src/task/wake.rs b/library/core/src/task/wake.rs
index d3f269d6d96..0cff972df3a 100644
--- a/library/core/src/task/wake.rs
+++ b/library/core/src/task/wake.rs
@@ -186,7 +186,7 @@ pub struct Context<'a> {
 impl<'a> Context<'a> {
     /// Create a new `Context` from a [`&Waker`](Waker).
     #[stable(feature = "futures_api", since = "1.36.0")]
-    #[rustc_const_unstable(feature = "const_waker", issue = "none")]
+    #[rustc_const_unstable(feature = "const_waker", issue = "102012")]
     #[must_use]
     #[inline]
     pub const fn from_waker(waker: &'a Waker) -> Self {
@@ -195,7 +195,7 @@ impl<'a> Context<'a> {
 
     /// Returns a reference to the [`Waker`] for the current task.
     #[stable(feature = "futures_api", since = "1.36.0")]
-    #[rustc_const_unstable(feature = "const_waker", issue = "none")]
+    #[rustc_const_unstable(feature = "const_waker", issue = "102012")]
     #[must_use]
     #[inline]
     pub const fn waker(&self) -> &'a Waker {
@@ -313,7 +313,7 @@ impl Waker {
     #[inline]
     #[must_use]
     #[stable(feature = "futures_api", since = "1.36.0")]
-    #[rustc_const_unstable(feature = "const_waker", issue = "none")]
+    #[rustc_const_unstable(feature = "const_waker", issue = "102012")]
     pub const unsafe fn from_raw(waker: RawWaker) -> Waker {
         Waker { waker }
     }