-
Notifications
You must be signed in to change notification settings - Fork 13k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
stabilize fetch_nand #49963
stabilize fetch_nand #49963
Conversation
r? @kennytm (rust_highfive has picked a reviewer for you, use r? to override) |
src/libcore/sync/atomic.rs
Outdated
@@ -1555,7 +1554,7 @@ atomic_int! { | |||
unstable(feature = "integer_atomics", issue = "32976"), | |||
unstable(feature = "integer_atomics", issue = "32976"), | |||
unstable(feature = "integer_atomics", issue = "32976"), | |||
unstable(feature = "atomic_nand", issue = "13226"), | |||
stable(feature = "atomic_nand", since = "1.27.0"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think for AtomicU8
etc the method should remain unstable under the feature integer_atomics
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, fixed.
@bors r+ cc @rust-lang/libs. (FCP of this feature has already been completed). |
📌 Commit c68c90a has been approved by |
stabilize fetch_nand This closes #13226 and makes `Atomic*.fetch_nand` stable.
☀️ Test successful - status-appveyor, status-travis |
This closes #13226 and makes
Atomic*.fetch_nand
stable.