Skip to content

Commit a9a698e

Browse files
cpetersobrson
authored andcommitted
---
yaml --- r: 23165 b: refs/heads/master c: 9470e5d h: refs/heads/master i: 23163: 61f7856 v: v3
1 parent 347d1b2 commit a9a698e

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
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: af1a66a53c48f94c69bfc7cc571dd043d7a37355
2+
refs/heads/master: 9470e5d7d56b4e697e6ba96e8f0cc10c64f0bdf0
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
55
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be

trunk/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;

trunk/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;

trunk/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)