Skip to content

Commit

Permalink
revert stabilization of core::task::ready!
Browse files Browse the repository at this point in the history
  • Loading branch information
ibraheemdev committed Oct 7, 2021
1 parent a57c18b commit 5786931
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/core/src/task/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ mod wake;
pub use self::wake::{Context, RawWaker, RawWakerVTable, Waker};

mod ready;
#[stable(feature = "ready_macro", since = "1.56.0")]
#[unstable(feature = "ready_macro", issue = "70922")]
pub use ready::ready;
#[unstable(feature = "poll_ready", issue = "none")]
pub use ready::Ready;
2 changes: 1 addition & 1 deletion library/core/src/task/ready.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ use core::task::Poll;
/// # Poll::Ready(())
/// # }
/// ```
#[stable(feature = "ready_macro", since = "1.56.0")]
#[unstable(feature = "ready_macro", issue = "70922")]
#[rustc_macro_transparency = "semitransparent"]
pub macro ready($e:expr) {
match $e {
Expand Down

0 comments on commit 5786931

Please sign in to comment.