diff options
| author | Lukas Markeffsky <@> | 2023-12-12 14:38:13 +0100 |
|---|---|---|
| committer | Lukas Markeffsky <@> | 2023-12-12 14:38:13 +0100 |
| commit | 04f3adb4a73e07fa32be69205c64ff3a8e64b15f (patch) | |
| tree | 4c3c4b5471e750ee2c563122988894ff17d174cd | |
| parent | 5b8bc568d28b2e922290c9a966b3231d0ce9398b (diff) | |
| download | rust-04f3adb4a73e07fa32be69205c64ff3a8e64b15f.tar.gz rust-04f3adb4a73e07fa32be69205c64ff3a8e64b15f.zip | |
fix `waker_getters` tracking issue number
| -rw-r--r-- | library/core/src/task/wake.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/core/src/task/wake.rs b/library/core/src/task/wake.rs index 1a11291e86b..9c41b8b4f46 100644 --- a/library/core/src/task/wake.rs +++ b/library/core/src/task/wake.rs @@ -48,7 +48,7 @@ impl RawWaker { /// Get the `data` pointer used to create this `RawWaker`. #[inline] #[must_use] - #[unstable(feature = "waker_getters", issue = "87021")] + #[unstable(feature = "waker_getters", issue = "96992")] pub fn data(&self) -> *const () { self.data } @@ -56,7 +56,7 @@ impl RawWaker { /// Get the `vtable` pointer used to create this `RawWaker`. #[inline] #[must_use] - #[unstable(feature = "waker_getters", issue = "87021")] + #[unstable(feature = "waker_getters", issue = "96992")] pub fn vtable(&self) -> &'static RawWakerVTable { self.vtable } @@ -371,7 +371,7 @@ impl Waker { /// Get a reference to the underlying [`RawWaker`]. #[inline] #[must_use] - #[unstable(feature = "waker_getters", issue = "87021")] + #[unstable(feature = "waker_getters", issue = "96992")] pub fn as_raw(&self) -> &RawWaker { &self.waker } |
