mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-06 12:18:33 +00:00
Stabilize atomic_bool_fetch_not
This commit is contained in:
parent
c3774be741
commit
860729ea39
@ -1069,7 +1069,6 @@ impl AtomicBool {
|
|||||||
/// # Examples
|
/// # Examples
|
||||||
///
|
///
|
||||||
/// ```
|
/// ```
|
||||||
/// #![feature(atomic_bool_fetch_not)]
|
|
||||||
/// use std::sync::atomic::{AtomicBool, Ordering};
|
/// use std::sync::atomic::{AtomicBool, Ordering};
|
||||||
///
|
///
|
||||||
/// let foo = AtomicBool::new(true);
|
/// let foo = AtomicBool::new(true);
|
||||||
@ -1081,7 +1080,7 @@ impl AtomicBool {
|
|||||||
/// assert_eq!(foo.load(Ordering::SeqCst), true);
|
/// assert_eq!(foo.load(Ordering::SeqCst), true);
|
||||||
/// ```
|
/// ```
|
||||||
#[inline]
|
#[inline]
|
||||||
#[unstable(feature = "atomic_bool_fetch_not", issue = "98485")]
|
#[stable(feature = "atomic_bool_fetch_not", since = "CURRENT_RUSTC_VERSION")]
|
||||||
#[cfg(target_has_atomic = "8")]
|
#[cfg(target_has_atomic = "8")]
|
||||||
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
|
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
|
||||||
pub fn fetch_not(&self, order: Ordering) -> bool {
|
pub fn fetch_not(&self, order: Ordering) -> bool {
|
||||||
|
Loading…
Reference in New Issue
Block a user