about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorPaul Dicker <pitdicker@gmail.com>2019-11-30 12:58:15 +0100
committerPaul Dicker <pitdicker@gmail.com>2019-11-30 12:58:15 +0100
commitd34090a10a6517f3e3ea8528936175953ce8bc3d (patch)
tree2898142a3b73e22640d7e07eef3c0650884ac7b4 /src/libcore
parent4843173a0015df5139866bffc3957c7782d8ccfe (diff)
downloadrust-d34090a10a6517f3e3ea8528936175953ce8bc3d.tar.gz
rust-d34090a10a6517f3e3ea8528936175953ce8bc3d.zip
Fill tracking issue
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/sync/atomic.rs4
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()
                 }