Skip to content

Commit 729334a

Browse files
committed
fill in tracking issue for feature(ptr_mask)
1 parent 8102e71 commit 729334a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/core/src/ptr/const_ptr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ impl<T: ?Sized> *const T {
566566
/// For non-`Sized` pointees this operation changes only the data pointer,
567567
/// leaving the metadata untouched.
568568
#[cfg(not(bootstrap))]
569-
#[unstable(feature = "ptr_mask", issue = "none")]
569+
#[unstable(feature = "ptr_mask", issue = "98290")]
570570
#[must_use = "returns a new pointer rather than modifying its argument"]
571571
#[inline(always)]
572572
pub fn mask(self, mask: usize) -> *const T {

library/core/src/ptr/mut_ptr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ impl<T: ?Sized> *mut T {
582582
/// For non-`Sized` pointees this operation changes only the data pointer,
583583
/// leaving the metadata untouched.
584584
#[cfg(not(bootstrap))]
585-
#[unstable(feature = "ptr_mask", issue = "none")]
585+
#[unstable(feature = "ptr_mask", issue = "98290")]
586586
#[must_use = "returns a new pointer rather than modifying its argument"]
587587
#[inline(always)]
588588
pub fn mask(self, mask: usize) -> *mut T {

0 commit comments

Comments
 (0)