Skip to content

Commit

Permalink
Bump int_bits_const stable version to 1.53.
Browse files Browse the repository at this point in the history
  • Loading branch information
m-ou-se committed Mar 24, 2021
1 parent 81932be commit bacd522
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/core/src/num/int_macros.rs
Expand Up @@ -34,7 +34,7 @@ macro_rules! int_impl {
/// ```
#[doc = concat!("assert_eq!(", stringify!($SelfT), "::BITS, ", stringify!($BITS), ");")]
/// ```
#[stable(feature = "int_bits_const", since = "1.51.0")]
#[stable(feature = "int_bits_const", since = "1.53.0")]
pub const BITS: u32 = $BITS;

/// Converts a string slice in a given base to an integer.
Expand Down
2 changes: 1 addition & 1 deletion library/core/src/num/uint_macros.rs
Expand Up @@ -34,7 +34,7 @@ macro_rules! uint_impl {
/// ```
#[doc = concat!("assert_eq!(", stringify!($SelfT), "::BITS, ", stringify!($BITS), ");")]
/// ```
#[stable(feature = "int_bits_const", since = "1.51.0")]
#[stable(feature = "int_bits_const", since = "1.53.0")]
pub const BITS: u32 = $BITS;

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

0 comments on commit bacd522

Please sign in to comment.