Skip to content

Commit 2b40cef

Browse files
committed
---
yaml --- r: 170908 b: refs/heads/try c: 49feb0c h: refs/heads/master v: v3
1 parent 0091a66 commit 2b40cef

File tree

3 files changed

+14
-15
lines changed

3 files changed

+14
-15
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 73a25f55ad748b4d3516417c711b99ce446591af
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 5b3cd3900ceda838f5798c30ab96ceb41f962534
5-
refs/heads/try: 65922dd42da48631fd9b4ced0d7d82dfec8bd176
5+
refs/heads/try: 49feb0c4310bbb7c290237b5b133cdbdda5ce228
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
88
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596

branches/try/src/libcore/num/f32.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ use num::Float;
2222
use num::FpCategory as Fp;
2323
use option::Option;
2424

25-
#[stable]
25+
#[unstable = "pending integer conventions"]
2626
pub const RADIX: uint = 2u;
2727

28-
#[stable]
28+
#[unstable = "pending integer conventions"]
2929
pub const MANTISSA_DIGITS: uint = 24u;
30-
#[stable]
30+
#[unstable = "pending integer conventions"]
3131
pub const DIGITS: uint = 6u;
3232

3333
#[stable]
@@ -43,14 +43,14 @@ pub const MIN_POS_VALUE: f32 = 1.17549435e-38_f32;
4343
#[stable]
4444
pub const MAX_VALUE: f32 = 3.40282347e+38_f32;
4545

46-
#[stable]
46+
#[unstable = "pending integer conventions"]
4747
pub const MIN_EXP: int = -125;
48-
#[stable]
48+
#[unstable = "pending integer conventions"]
4949
pub const MAX_EXP: int = 128;
5050

51-
#[stable]
51+
#[unstable = "pending integer conventions"]
5252
pub const MIN_10_EXP: int = -37;
53-
#[stable]
53+
#[unstable = "pending integer conventions"]
5454
pub const MAX_10_EXP: int = 38;
5555

5656
#[stable]

branches/try/src/libcore/num/f64.rs

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff 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"]
3030
pub const RADIX: uint = 2u;
3131

32-
#[stable]
3332
pub const MANTISSA_DIGITS: uint = 53u;
34-
#[stable]
33+
#[unstable = "pending integer conventions"]
3534
pub const DIGITS: uint = 15u;
3635

3736
#[stable]
@@ -47,14 +46,14 @@ pub const MIN_POS_VALUE: f64 = 2.2250738585072014e-308_f64;
4746
#[stable]
4847
pub const MAX_VALUE: f64 = 1.7976931348623157e+308_f64;
4948

50-
#[stable]
49+
#[unstable = "pending integer conventions"]
5150
pub const MIN_EXP: int = -1021;
52-
#[stable]
51+
#[unstable = "pending integer conventions"]
5352
pub const MAX_EXP: int = 1024;
5453

55-
#[stable]
54+
#[unstable = "pending integer conventions"]
5655
pub const MIN_10_EXP: int = -307;
57-
#[stable]
56+
#[unstable = "pending integer conventions"]
5857
pub const MAX_10_EXP: int = 308;
5958

6059
#[stable]

0 commit comments

Comments
 (0)