Skip to content

Commit

Permalink
Change version number for impl From<bool> for AtomicBool to 1.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ollie27 authored Nov 27, 2017
1 parent 652a4bd commit 71d766b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcore/sync/atomic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,7 @@ impl<T> AtomicPtr<T> {
}

#[cfg(target_has_atomic = "8")]
#[stable(feature = "atomic_from", since = "1.23.0")]
#[stable(feature = "atomic_bool_from", since = "1.24.0")]
impl From<bool> for AtomicBool {
#[inline]
fn from(b: bool) -> Self { Self::new(b) }
Expand Down

0 comments on commit 71d766b

Please sign in to comment.