Skip to content

Commit 036085d

Browse files
committed
set tracking issue
1 parent 4f82731 commit 036085d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

library/core/src/task/wake.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ impl<'a> Context<'a> {
276276

277277
/// Returns a reference to the extension data for the current task.
278278
#[inline]
279-
#[unstable(feature = "context_ext", issue = "none")]
279+
#[unstable(feature = "context_ext", issue = "123392")]
280280
#[rustc_const_unstable(feature = "const_waker", issue = "102012")]
281281
pub const fn ext(&mut self) -> &mut dyn Any {
282282
match &mut self.ext {
@@ -351,7 +351,7 @@ impl<'a> ContextBuilder<'a> {
351351
/// Create a ContextBuilder from an existing Context.
352352
#[inline]
353353
#[rustc_const_unstable(feature = "const_waker", issue = "102012")]
354-
#[unstable(feature = "context_ext", issue = "none")]
354+
#[unstable(feature = "context_ext", issue = "123392")]
355355
pub const fn from(cx: &'a mut Context<'_>) -> Self {
356356
let ext = match &mut cx.ext {
357357
ExtData::Some(ext) => ExtData::Some(*ext),
@@ -368,7 +368,7 @@ impl<'a> ContextBuilder<'a> {
368368

369369
/// This method is used to set the value for the waker on `Context`.
370370
#[inline]
371-
#[unstable(feature = "context_ext", issue = "none")]
371+
#[unstable(feature = "context_ext", issue = "123392")]
372372
#[rustc_const_unstable(feature = "const_waker", issue = "102012")]
373373
pub const fn waker(self, waker: &'a Waker) -> Self {
374374
Self { waker, ..self }
@@ -384,7 +384,7 @@ impl<'a> ContextBuilder<'a> {
384384

385385
/// This method is used to set the value for the extension data on `Context`.
386386
#[inline]
387-
#[unstable(feature = "context_ext", issue = "none")]
387+
#[unstable(feature = "context_ext", issue = "123392")]
388388
#[rustc_const_unstable(feature = "const_waker", issue = "102012")]
389389
pub const fn ext(self, data: &'a mut dyn Any) -> Self {
390390
Self { ext: ExtData::Some(data), ..self }

0 commit comments

Comments
 (0)