diff options
| author | León Orell Valerian Liehr <me@fmease.dev> | 2024-12-10 20:16:03 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-10 20:16:03 +0100 |
| commit | f621be4ecce2d8a0d128c8f2c9392e2cde2af381 (patch) | |
| tree | 5a16ade32f9c41e80f73aef34a6c56a19cc2d802 | |
| parent | 185440a375b8b325230a720b10517f286047375d (diff) | |
| parent | b9afc78585fe1cbda5d6a3aed665338e7381ae79 (diff) | |
| download | rust-f621be4ecce2d8a0d128c8f2c9392e2cde2af381.tar.gz rust-f621be4ecce2d8a0d128c8f2c9392e2cde2af381.zip | |
Rollup merge of #134100 - eholk:noop-rustc-const-stable, r=dtolnay
Remove rustc_const_stable attribute on const NOOP This was accidentally reintroduced while editing #133089. r? dtolnay
| -rw-r--r-- | library/core/src/task/wake.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/library/core/src/task/wake.rs b/library/core/src/task/wake.rs index 6762ed54e5c..bfffcc24a46 100644 --- a/library/core/src/task/wake.rs +++ b/library/core/src/task/wake.rs @@ -61,7 +61,6 @@ impl RawWaker { } #[stable(feature = "noop_waker", since = "CURRENT_RUSTC_VERSION")] - #[rustc_const_stable(feature = "noop_waker", since = "CURRENT_RUSTC_VERSION")] const NOOP: RawWaker = { const VTABLE: RawWakerVTable = RawWakerVTable::new( // Cloning just returns a new no-op raw waker |
