diff options
| author | progressive.galib <progressive.galib@gmail.com> | 2025-02-15 05:19:09 +0000 |
|---|---|---|
| committer | progressive.galib <progressive.galib@gmail.com> | 2025-02-15 05:19:09 +0000 |
| commit | e2b522505b367546da7af2cf24be762a4acfc41e (patch) | |
| tree | 1e4f00a94ca344d9545d7d234281fe0b079e2c6c | |
| parent | 54a0f387ea8c7bcb79b8e40c074a484d31b51990 (diff) | |
| download | rust-e2b522505b367546da7af2cf24be762a4acfc41e.tar.gz rust-e2b522505b367546da7af2cf24be762a4acfc41e.zip | |
replaced the four occurrences of issue ="50547" in
library/core/src/future/mod.rs with issue = "none"
| -rw-r--r-- | library/core/src/future/mod.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/core/src/future/mod.rs b/library/core/src/future/mod.rs index e5a368796ec..50c5fdc919d 100644 --- a/library/core/src/future/mod.rs +++ b/library/core/src/future/mod.rs @@ -46,19 +46,19 @@ pub use self::join::join; /// It also simplifies the HIR lowering of `.await`. #[lang = "ResumeTy"] #[doc(hidden)] -#[unstable(feature = "gen_future", issue = "50547")] +#[unstable(feature = "gen_future", issue= "none")] #[derive(Debug, Copy, Clone)] pub struct ResumeTy(NonNull<Context<'static>>); -#[unstable(feature = "gen_future", issue = "50547")] +#[unstable(feature = "gen_future", issue= "none")] unsafe impl Send for ResumeTy {} -#[unstable(feature = "gen_future", issue = "50547")] +#[unstable(feature = "gen_future", issue= "none")] unsafe impl Sync for ResumeTy {} #[lang = "get_context"] #[doc(hidden)] -#[unstable(feature = "gen_future", issue = "50547")] +#[unstable(feature = "gen_future", issue= "none")] #[must_use] #[inline] pub unsafe fn get_context<'a, 'b>(cx: ResumeTy) -> &'a mut Context<'b> { |
