From d34090a10a6517f3e3ea8528936175953ce8bc3d Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Sat, 30 Nov 2019 12:58:15 +0100 Subject: [PATCH] Fill tracking issue --- src/libcore/sync/atomic.rs | 4 ++-- 1 file 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 @@ pub fn fetch_xor(&self, val: bool, order: Ordering) -> bool { #[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 @@ pub fn fetch_min(&self, val: $int_type, order: Ordering) -> $int_type { #[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() } -- 2.44.0