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 18e0966

Browse files
authoredDec 13, 2023
Rollup merge of #118873 - lukas-code:fix_waker_getter_tracking_issue_number, r=workingjubilee
fix `waker_getters` tracking issue number The feature currently links to the closed issue #87021. Make it link to the tracking issue #96992 instead.
2 parents 0430782 + 04f3adb commit 18e0966

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.