Skip to content

Commit af01198

Browse files
cpetersobrson
authored andcommitted
---
yaml --- r: 27743 b: refs/heads/try c: 9470e5d h: refs/heads/master i: 27741: 591e855 27739: fc3e42c 27735: 6312af0 27727: db9a495 27711: e5ee2ee v: v3
1 parent 22bfea1 commit af01198

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
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: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
5-
refs/heads/try: af1a66a53c48f94c69bfc7cc571dd043d7a37355
5+
refs/heads/try: 9470e5d7d56b4e697e6ba96e8f0cc10c64f0bdf0
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df

branches/try/src/libcore/f32.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import cmath::c_float::*;
66
import cmath::c_float_targ_consts::*;
77

8-
export add, sub, mul, div, rem, lt, le, gt, eq, ne;
8+
export add, sub, mul, div, rem, lt, le, eq, ne, ge, gt;
99
export is_positive, is_negative, is_nonpositive, is_nonnegative;
1010
export is_zero, is_infinite, is_finite;
1111
export NaN, is_NaN, infinity, neg_infinity;

branches/try/src/libcore/f64.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import cmath::c_double_targ_consts::*;
88
// Even though this module exports everything defined in it,
99
// because it contains re-exports, we also have to explicitly
1010
// export locally defined things. That's a bit annoying.
11-
export add, sub, mul, div, rem, lt, le, gt, eq, ne;
11+
export add, sub, mul, div, rem, lt, le, eq, ne, ge, gt;
1212
export is_positive, is_negative, is_nonpositive, is_nonnegative;
1313
export is_zero, is_infinite, is_finite;
1414
export NaN, is_NaN, infinity, neg_infinity;

branches/try/src/libcore/float.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// because it contains re-exports, we also have to explicitly
55
// export locally defined things. That's a bit annoying.
66
export to_str_common, to_str_exact, to_str, from_str;
7-
export add, sub, mul, div, rem, lt, le, gt, eq, ne;
7+
export add, sub, mul, div, rem, lt, le, eq, ne, ge, gt;
88
export is_positive, is_negative, is_nonpositive, is_nonnegative;
99
export is_zero, is_infinite, is_finite;
1010
export NaN, is_NaN, infinity, neg_infinity;
@@ -28,7 +28,7 @@ export j0, j1, jn, y0, y1, yn;
2828

2929
import m_float = f64;
3030

31-
import f64::{add, sub, mul, div, rem, lt, le, gt, eq, ne};
31+
import f64::{add, sub, mul, div, rem, lt, le, eq, ne, ge, gt};
3232
import f64::logarithm;
3333
import f64::{acos, asin, atan2, cbrt, ceil, copysign, cosh, floor};
3434
import f64::{erf, erfc, exp, expm1, exp2, abs_sub};

0 commit comments

Comments
 (0)