File tree Expand file tree Collapse file tree 2 files changed +13
-14
lines changed Expand file tree Collapse file tree 2 files changed +13
-14
lines changed Original file line number Diff line number Diff line change @@ -22,12 +22,12 @@ use num::Float;
2222use num:: FpCategory as Fp ;
2323use option:: Option ;
2424
25- #[ stable ]
25+ #[ unstable = "pending integer conventions" ]
2626pub const RADIX : uint = 2 u;
2727
28- #[ stable ]
28+ #[ unstable = "pending integer conventions" ]
2929pub const MANTISSA_DIGITS : uint = 24 u;
30- #[ stable ]
30+ #[ unstable = "pending integer conventions" ]
3131pub const DIGITS : uint = 6 u;
3232
3333#[ stable]
@@ -43,14 +43,14 @@ pub const MIN_POS_VALUE: f32 = 1.17549435e-38_f32;
4343#[ stable]
4444pub const MAX_VALUE : f32 = 3.40282347e+38_f32 ;
4545
46- #[ stable ]
46+ #[ unstable = "pending integer conventions" ]
4747pub const MIN_EXP : int = -125 ;
48- #[ stable ]
48+ #[ unstable = "pending integer conventions" ]
4949pub const MAX_EXP : int = 128 ;
5050
51- #[ stable ]
51+ #[ unstable = "pending integer conventions" ]
5252pub const MIN_10_EXP : int = -37 ;
53- #[ stable ]
53+ #[ unstable = "pending integer conventions" ]
5454pub const MAX_10_EXP : int = 38 ;
5555
5656#[ stable]
Original file line number Diff line number Diff line change @@ -26,12 +26,11 @@ use option::Option;
2626// constants are implemented in favour of referencing the respective
2727// members of `Bounded` and `Float`.
2828
29- #[ stable ]
29+ #[ unstable = "pending integer conventions" ]
3030pub const RADIX : uint = 2 u;
3131
32- #[ stable]
3332pub const MANTISSA_DIGITS : uint = 53 u;
34- #[ stable ]
33+ #[ unstable = "pending integer conventions" ]
3534pub const DIGITS : uint = 15 u;
3635
3736#[ stable]
@@ -47,14 +46,14 @@ pub const MIN_POS_VALUE: f64 = 2.2250738585072014e-308_f64;
4746#[ stable]
4847pub const MAX_VALUE : f64 = 1.7976931348623157e+308_f64 ;
4948
50- #[ stable ]
49+ #[ unstable = "pending integer conventions" ]
5150pub const MIN_EXP : int = -1021 ;
52- #[ stable ]
51+ #[ unstable = "pending integer conventions" ]
5352pub const MAX_EXP : int = 1024 ;
5453
55- #[ stable ]
54+ #[ unstable = "pending integer conventions" ]
5655pub const MIN_10_EXP : int = -307 ;
57- #[ stable ]
56+ #[ unstable = "pending integer conventions" ]
5857pub const MAX_10_EXP : int = 308 ;
5958
6059#[ stable]
You can’t perform that action at this time.
0 commit comments