Skip to content

Commit a671fa1

Browse files
committed
add tracking issue
1 parent 4242335 commit a671fa1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/core/src/ptr/mut_ptr.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1382,7 +1382,7 @@ impl<T> *mut [T] {
13821382
/// ```
13831383
#[inline(always)]
13841384
#[track_caller]
1385-
#[unstable(feature = "raw_slice_split", issue = "71146")]
1385+
#[unstable(feature = "raw_slice_split", issue = "95595")]
13861386
pub fn split_at_mut(self, mid: usize) -> (*mut [T], *mut [T]) {
13871387
assert!(mid <= self.len());
13881388
// SAFETY: `[ptr; mid]` and `[mid; len]` are inside `self`, which
@@ -1426,7 +1426,7 @@ impl<T> *mut [T] {
14261426
/// assert_eq!(v, [1, 2, 3, 4, 5, 6]);
14271427
/// ```
14281428
#[inline(always)]
1429-
#[unstable(feature = "raw_slice_split", issue = "71146")]
1429+
#[unstable(feature = "raw_slice_split", issue = "95595")]
14301430
pub unsafe fn split_at_mut_unchecked(self, mid: usize) -> (*mut [T], *mut [T]) {
14311431
let len = self.len();
14321432
let ptr = self.as_mut_ptr();

0 commit comments

Comments
 (0)