Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 04f3adb

Browse files
author
Lukas Markeffsky
committedDec 12, 2023
fix waker_getters tracking issue number
1 parent 5b8bc56 commit 04f3adb

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
@@ -48,15 +48,15 @@ impl RawWaker {
4848
/// Get the `data` pointer used to create this `RawWaker`.
4949
#[inline]
5050
#[must_use]
51-
#[unstable(feature = "waker_getters", issue = "87021")]
51+
#[unstable(feature = "waker_getters", issue = "96992")]
5252
pub fn data(&self) -> *const () {
5353
self.data
5454
}
5555

5656
/// Get the `vtable` pointer used to create this `RawWaker`.
5757
#[inline]
5858
#[must_use]
59-
#[unstable(feature = "waker_getters", issue = "87021")]
59+
#[unstable(feature = "waker_getters", issue = "96992")]
6060
pub fn vtable(&self) -> &'static RawWakerVTable {
6161
self.vtable
6262
}
@@ -371,7 +371,7 @@ impl Waker {
371371
/// Get a reference to the underlying [`RawWaker`].
372372
#[inline]
373373
#[must_use]
374-
#[unstable(feature = "waker_getters", issue = "87021")]
374+
#[unstable(feature = "waker_getters", issue = "96992")]
375375
pub fn as_raw(&self) -> &RawWaker {
376376
&self.waker
377377
}

0 commit comments

Comments
 (0)
Failed to load comments.