From 9758c488a94e77cc8a110a6783a99cf5b91326db Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Thu, 22 Jan 2015 12:33:46 -0800 Subject: Deprecated attributes don't take 'feature' names and are paired with stable/unstable Conflicts: src/libcore/atomic.rs src/libcore/finally.rs src/test/auxiliary/inherited_stability.rs src/test/auxiliary/lint_stability.rs --- src/libstd/num/int.rs | 3 ++- src/libstd/num/mod.rs | 21 ++++++++++++++------- src/libstd/num/uint.rs | 3 ++- 3 files changed, 18 insertions(+), 9 deletions(-) (limited to 'src/libstd/num') diff --git a/src/libstd/num/int.rs b/src/libstd/num/int.rs index 2bf9f9b025d..669952eee39 100644 --- a/src/libstd/num/int.rs +++ b/src/libstd/num/int.rs @@ -14,7 +14,8 @@ //! alpha cycle along with the development of clearer conventions //! around integer types. -#![deprecated(feature = "oldstuff", since = "1.0.0", reason = "replaced by isize")] +#![unstable(feature = "std_misc")] +#![deprecated(since = "1.0.0", reason = "replaced by isize")] pub use core::int::{BITS, BYTES, MIN, MAX}; diff --git a/src/libstd/num/mod.rs b/src/libstd/num/mod.rs index b73882c76c1..78ccaeef7bc 100644 --- a/src/libstd/num/mod.rs +++ b/src/libstd/num/mod.rs @@ -79,32 +79,39 @@ pub trait Float // FIXME (#5527): These should be associated constants /// Returns the number of binary digits of mantissa that this type supports. - #[deprecated(feature = "oldstuff", since = "1.0.0", + #[unstable(feature = "std_misc")] + #[deprecated(since = "1.0.0", reason = "use `std::f32::MANTISSA_DIGITS` or \ `std::f64::MANTISSA_DIGITS` as appropriate")] fn mantissa_digits(unused_self: Option) -> uint; /// Returns the number of base-10 digits of precision that this type supports. - #[deprecated(feature = "oldstuff", since = "1.0.0", + #[unstable(feature = "std_misc")] + #[deprecated(since = "1.0.0", reason = "use `std::f32::DIGITS` or `std::f64::DIGITS` as appropriate")] fn digits(unused_self: Option) -> uint; /// Returns the difference between 1.0 and the smallest representable number larger than 1.0. - #[deprecated(feature = "oldstuff", since = "1.0.0", + #[unstable(feature = "std_misc")] + #[deprecated(since = "1.0.0", reason = "use `std::f32::EPSILON` or `std::f64::EPSILON` as appropriate")] fn epsilon() -> Self; /// Returns the minimum binary exponent that this type can represent. - #[deprecated(feature = "oldstuff", since = "1.0.0", + #[unstable(feature = "std_misc")] + #[deprecated(since = "1.0.0", reason = "use `std::f32::MIN_EXP` or `std::f64::MIN_EXP` as appropriate")] fn min_exp(unused_self: Option) -> int; /// Returns the maximum binary exponent that this type can represent. - #[deprecated(feature = "oldstuff", since = "1.0.0", + #[unstable(feature = "std_misc")] + #[deprecated(since = "1.0.0", reason = "use `std::f32::MAX_EXP` or `std::f64::MAX_EXP` as appropriate")] fn max_exp(unused_self: Option) -> int; /// Returns the minimum base-10 exponent that this type can represent. - #[deprecated(feature = "oldstuff", since = "1.0.0", + #[unstable(feature = "std_misc")] + #[deprecated(since = "1.0.0", reason = "use `std::f32::MIN_10_EXP` or `std::f64::MIN_10_EXP` as appropriate")] fn min_10_exp(unused_self: Option) -> int; /// Returns the maximum base-10 exponent that this type can represent. - #[deprecated(feature = "oldstuff", since = "1.0.0", + #[unstable(feature = "std_misc")] + #[deprecated(since = "1.0.0", reason = "use `std::f32::MAX_10_EXP` or `std::f64::MAX_10_EXP` as appropriate")] fn max_10_exp(unused_self: Option) -> int; diff --git a/src/libstd/num/uint.rs b/src/libstd/num/uint.rs index 58685b05981..c7b491381f3 100644 --- a/src/libstd/num/uint.rs +++ b/src/libstd/num/uint.rs @@ -14,7 +14,8 @@ //! alpha cycle along with the development of clearer conventions //! around integer types. -#![deprecated(feature = "oldstuff", since = "1.0.0", reason = "replaced by usize")] +#![unstable(feature = "std_misc")] +#![deprecated(since = "1.0.0", reason = "replaced by usize")] pub use core::uint::{BITS, BYTES, MIN, MAX}; -- cgit 1.4.1-3-g733a5