Skip to content

Commit 8e848dc

Browse files
committed
Added tracking issue
1 parent 9a78fab commit 8e848dc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

library/core/src/task/wake.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ pub struct Context<'a> {
186186
impl<'a> Context<'a> {
187187
/// Create a new `Context` from a [`&Waker`](Waker).
188188
#[stable(feature = "futures_api", since = "1.36.0")]
189-
#[rustc_const_unstable(feature = "const_waker", issue = "none")]
189+
#[rustc_const_unstable(feature = "const_waker", issue = "102012")]
190190
#[must_use]
191191
#[inline]
192192
pub const fn from_waker(waker: &'a Waker) -> Self {
@@ -195,7 +195,7 @@ impl<'a> Context<'a> {
195195

196196
/// Returns a reference to the [`Waker`] for the current task.
197197
#[stable(feature = "futures_api", since = "1.36.0")]
198-
#[rustc_const_unstable(feature = "const_waker", issue = "none")]
198+
#[rustc_const_unstable(feature = "const_waker", issue = "102012")]
199199
#[must_use]
200200
#[inline]
201201
pub const fn waker(&self) -> &'a Waker {
@@ -313,7 +313,7 @@ impl Waker {
313313
#[inline]
314314
#[must_use]
315315
#[stable(feature = "futures_api", since = "1.36.0")]
316-
#[rustc_const_unstable(feature = "const_waker", issue = "none")]
316+
#[rustc_const_unstable(feature = "const_waker", issue = "102012")]
317317
pub const unsafe fn from_raw(waker: RawWaker) -> Waker {
318318
Waker { waker }
319319
}

0 commit comments

Comments
 (0)