Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update stable version of ready!() macro.
  • Loading branch information
m-ou-se committed Jul 28, 2021
commit 18cc06c848ec2707c3593f8e2ea6e7090e17ff16
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