Skip to content

Commit 77f9eae

Browse files
committed
fixup! isqrt: fix stability
1 parent 5146317 commit 77f9eae

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

library/core/src/num/int_macros.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -909,8 +909,8 @@ macro_rules! int_impl {
909909
/// #![feature(isqrt)]
910910
#[doc = concat!("assert_eq!(10", stringify!($SelfT), ".checked_isqrt(), Some(3));")]
911911
/// ```
912-
#[unstable(feature = "isqrt", issue = "none")]
913-
#[rustc_const_unstable(feature = "isqrt", issue = "none")]
912+
#[unstable(feature = "isqrt", issue = "116226")]
913+
#[rustc_const_unstable(feature = "isqrt", issue = "116226")]
914914
#[must_use = "this returns the result of the operation, \
915915
without modifying the original"]
916916
#[inline]
@@ -2098,8 +2098,8 @@ macro_rules! int_impl {
20982098
/// #![feature(isqrt)]
20992099
#[doc = concat!("assert_eq!(10", stringify!($SelfT), ".isqrt(), 3);")]
21002100
/// ```
2101-
#[unstable(feature = "isqrt", issue = "none")]
2102-
#[rustc_const_unstable(feature = "isqrt", issue = "none")]
2101+
#[unstable(feature = "isqrt", issue = "116226")]
2102+
#[rustc_const_unstable(feature = "isqrt", issue = "116226")]
21032103
#[must_use = "this returns the result of the operation, \
21042104
without modifying the original"]
21052105
#[inline]

library/core/src/num/uint_macros.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1988,8 +1988,8 @@ macro_rules! uint_impl {
19881988
/// #![feature(isqrt)]
19891989
#[doc = concat!("assert_eq!(10", stringify!($SelfT), ".isqrt(), 3);")]
19901990
/// ```
1991-
#[unstable(feature = "isqrt", issue = "none")]
1992-
#[rustc_const_unstable(feature = "isqrt", issue = "none")]
1991+
#[unstable(feature = "isqrt", issue = "116226")]
1992+
#[rustc_const_unstable(feature = "isqrt", issue = "116226")]
19931993
#[must_use = "this returns the result of the operation, \
19941994
without modifying the original"]
19951995
#[inline]

0 commit comments

Comments
 (0)