diff options
| author | Oliver Middleton <ollie27@users.noreply.github.com> | 2017-11-27 21:26:19 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-11-27 21:26:19 +0000 |
| commit | 71d766bd553967cfeb8a39cbcf6c2c97f3617208 (patch) | |
| tree | a851483c2599951a92b48e3583397c94a7941249 /src/libcore/sync | |
| parent | 652a4bd26cd9adcb9b8bf03c220b0fa430a9893b (diff) | |
| download | rust-71d766bd553967cfeb8a39cbcf6c2c97f3617208.tar.gz rust-71d766bd553967cfeb8a39cbcf6c2c97f3617208.zip | |
Change version number for `impl From<bool> for AtomicBool` to 1.24.0
Diffstat (limited to 'src/libcore/sync')
| -rw-r--r-- | src/libcore/sync/atomic.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/sync/atomic.rs b/src/libcore/sync/atomic.rs index 352e85d2b08..6fab81d76a4 100644 --- a/src/libcore/sync/atomic.rs +++ b/src/libcore/sync/atomic.rs @@ -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) } |
