Skip to content

Commit bacd522

Browse files
committed
Bump int_bits_const stable version to 1.53.
1 parent 81932be commit bacd522

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/core/src/num/int_macros.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ macro_rules! int_impl {
3434
/// ```
3535
#[doc = concat!("assert_eq!(", stringify!($SelfT), "::BITS, ", stringify!($BITS), ");")]
3636
/// ```
37-
#[stable(feature = "int_bits_const", since = "1.51.0")]
37+
#[stable(feature = "int_bits_const", since = "1.53.0")]
3838
pub const BITS: u32 = $BITS;
3939

4040
/// Converts a string slice in a given base to an integer.

library/core/src/num/uint_macros.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ macro_rules! uint_impl {
3434
/// ```
3535
#[doc = concat!("assert_eq!(", stringify!($SelfT), "::BITS, ", stringify!($BITS), ");")]
3636
/// ```
37-
#[stable(feature = "int_bits_const", since = "1.51.0")]
37+
#[stable(feature = "int_bits_const", since = "1.53.0")]
3838
pub const BITS: u32 = $BITS;
3939

4040
/// Converts a string slice in a given base to an integer.

0 commit comments

Comments
 (0)