]> git.lizzy.rs Git - rust.git/blobdiff - src/libcore/num/int_macros.rs
std: Clean out deprecated APIs
[rust.git] / src / libcore / num / int_macros.rs
index efc91238809784650f60a6657e1d4c38b38fb871..42349257ab71c23415eb2edcfb49bbc13c9d6aca 100644 (file)
 
 macro_rules! int_module { ($T:ty, $bits:expr) => (
 
-// FIXME(#11621): Should be deprecated once CTFE is implemented in favour of
-// calling the `mem::size_of` function.
-#[unstable(feature = "num_bits_bytes",
-           reason = "may want to be an associated function")]
-pub const BITS : usize = $bits;
-// FIXME(#11621): Should be deprecated once CTFE is implemented in favour of
-// calling the `mem::size_of` function.
-#[unstable(feature = "num_bits_bytes",
-           reason = "may want to be an associated function")]
-pub const BYTES : usize = ($bits / 8);
-
 // FIXME(#11621): Should be deprecated once CTFE is implemented in favour of
 // calling the `Bounded::min_value` function.
 #[stable(feature = "rust1", since = "1.0.0")]
-pub const MIN: $T = (-1 as $T) << (BITS - 1);
+#[allow(missing_docs)]
+pub const MIN: $T = (-1 as $T) << ($bits - 1);
 // FIXME(#9837): Compute MIN like this so the high bits that shouldn't exist are 0.
 // FIXME(#11621): Should be deprecated once CTFE is implemented in favour of
 // calling the `Bounded::max_value` function.
 #[stable(feature = "rust1", since = "1.0.0")]
+#[allow(missing_docs)]
 pub const MAX: $T = !MIN;
 
 ) }