diff options
| author | Oliver Scherer <github35764891676564198441@oli-obk.de> | 2019-12-13 13:28:55 +0100 |
|---|---|---|
| committer | Oliver Scherer <github35764891676564198441@oli-obk.de> | 2019-12-13 13:28:55 +0100 |
| commit | 0b47ba7019adf06f6687a8c94040e63ae1ea4fba (patch) | |
| tree | 2462674e6eb987f0bccaf46ab35cb04795090736 | |
| parent | f12affef12d50584f575c703b8d66ff57ecb4b95 (diff) | |
| download | rust-0b47ba7019adf06f6687a8c94040e63ae1ea4fba.tar.gz rust-0b47ba7019adf06f6687a8c94040e63ae1ea4fba.zip | |
The constness of 128 bit atomics will be stabilized together with the atomics
| -rw-r--r-- | src/libcore/sync/atomic.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/sync/atomic.rs b/src/libcore/sync/atomic.rs index f3dc9f88c8d..7756335ee20 100644 --- a/src/libcore/sync/atomic.rs +++ b/src/libcore/sync/atomic.rs @@ -2126,7 +2126,7 @@ atomic_int! { unstable(feature = "integer_atomics", issue = "32976"), unstable(feature = "integer_atomics", issue = "32976"), unstable(feature = "integer_atomics", issue = "32976"), - rustc_const_unstable(feature = "const_integer_atomics", issue = "32976"), + rustc_const_stable(feature = "const_integer_atomics", since = "1.34.0"), unstable(feature = "integer_atomics", issue = "32976"), "i128", "../../../std/primitive.i128.html", "#![feature(integer_atomics)]\n\n", @@ -2144,7 +2144,7 @@ atomic_int! { unstable(feature = "integer_atomics", issue = "32976"), unstable(feature = "integer_atomics", issue = "32976"), unstable(feature = "integer_atomics", issue = "32976"), - rustc_const_unstable(feature = "const_integer_atomics", issue = "32976"), + rustc_const_stable(feature = "const_integer_atomics", since = "1.34.0"), unstable(feature = "integer_atomics", issue = "32976"), "u128", "../../../std/primitive.u128.html", "#![feature(integer_atomics)]\n\n", |
