diff options
| author | Paul Dicker <pitdicker@gmail.com> | 2019-11-30 12:58:15 +0100 |
|---|---|---|
| committer | Paul Dicker <pitdicker@gmail.com> | 2019-11-30 12:58:15 +0100 |
| commit | d34090a10a6517f3e3ea8528936175953ce8bc3d (patch) | |
| tree | 2898142a3b73e22640d7e07eef3c0650884ac7b4 /src/libcore | |
| parent | 4843173a0015df5139866bffc3957c7782d8ccfe (diff) | |
| download | rust-d34090a10a6517f3e3ea8528936175953ce8bc3d.tar.gz rust-d34090a10a6517f3e3ea8528936175953ce8bc3d.zip | |
Fill tracking issue
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/sync/atomic.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/sync/atomic.rs b/src/libcore/sync/atomic.rs index 3a5b4135a91..9a910f35485 100644 --- a/src/libcore/sync/atomic.rs +++ b/src/libcore/sync/atomic.rs @@ -835,7 +835,7 @@ impl AtomicBool { #[inline] #[unstable(feature = "atomic_mut_ptr", reason = "recently added", - issue = "0")] + issue = "66893")] pub fn as_mut_ptr(&self) -> *mut bool { self.v.get() as *mut bool } @@ -1960,7 +1960,7 @@ unsafe { #[inline] #[unstable(feature = "atomic_mut_ptr", reason = "recently added", - issue = "0")] + issue = "66893")] pub fn as_mut_ptr(&self) -> *mut $int_type { self.v.get() } |
