Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit bacd522

Browse files
committedMar 24, 2021
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)
Please sign in to comment.