Skip to content

Commit

Permalink
Update stable version of ready!() macro.
Browse files Browse the repository at this point in the history
  • Loading branch information
m-ou-se committed Jul 28, 2021
1 parent 8c91805 commit 18cc06c
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,5 +11,5 @@ mod wake;
pub use self::wake::{Context, RawWaker, RawWakerVTable, Waker};

mod ready;
#[stable(feature = "ready_macro", since = "1.55.0")]
#[stable(feature = "ready_macro", since = "1.56.0")]
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 @@ -45,7 +45,7 @@
/// # Poll::Ready(())
/// # }
/// ```
#[stable(feature = "ready_macro", since = "1.55.0")]
#[stable(feature = "ready_macro", since = "1.56.0")]
#[rustc_macro_transparency = "semitransparent"]
pub macro ready($e:expr) {
match $e {
Expand Down

0 comments on commit 18cc06c

Please sign in to comment.