Skip to content

Commit 3f7e412

Browse files
author
Jeremy Fitzhardinge
committed
update tracking issue in unstable
1 parent 136cb4a commit 3f7e412

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

library/core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ pub mod num;
281281
pub mod hint;
282282
pub mod intrinsics;
283283
pub mod mem;
284-
#[unstable(feature = "profiling_marker_api", issue = "none")]
284+
#[unstable(feature = "profiling_marker_api", issue = "148197")]
285285
pub mod profiling;
286286
pub mod ptr;
287287
#[unstable(feature = "ub_checks", issue = "none")]

library/core/src/profiling.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
///
99
/// The `SIZE` parameter encodes the size of the type being copied. It's the same as
1010
/// `size_of::<T>()`, and is only present for convenience.
11-
#[unstable(feature = "profiling_marker_api", issue = "none")]
11+
#[unstable(feature = "profiling_marker_api", issue = "148197")]
1212
#[lang = "compiler_move"]
1313
pub fn compiler_move<T, const SIZE: usize>(_src: *const T, _dst: *mut T) {
1414
unreachable!(
@@ -24,7 +24,7 @@ pub fn compiler_move<T, const SIZE: usize>(_src: *const T, _dst: *mut T) {
2424
///
2525
/// The `SIZE` parameter encodes the size of the type being copied. It's the same as
2626
/// `size_of::<T>()`, and is only present for convenience.
27-
#[unstable(feature = "profiling_marker_api", issue = "none")]
27+
#[unstable(feature = "profiling_marker_api", issue = "148197")]
2828
#[lang = "compiler_copy"]
2929
pub fn compiler_copy<T, const SIZE: usize>(_src: *const T, _dst: *mut T) {
3030
unreachable!(

0 commit comments

Comments
 (0)