Change version number for impl From<bool> for AtomicBool to 1.24.0

This commit is contained in:
Oliver Middleton 2017-11-27 21:26:19 +00:00 committed by GitHub
parent 652a4bd26c
commit 71d766bd55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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) }