Skip to content

Commit 21e6709

Browse files
cpetersobrson
authored andcommitted
---
yaml --- r: 29765 b: refs/heads/incoming c: 9470e5d h: refs/heads/master i: 29763: 4e207f1 v: v3
1 parent 5a09375 commit 21e6709

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
@@ -6,7 +6,7 @@ refs/heads/try: d324a424d8f84b1eb049b12cf34182bda91b0024
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df
9-
refs/heads/incoming: af1a66a53c48f94c69bfc7cc571dd043d7a37355
9+
refs/heads/incoming: 9470e5d7d56b4e697e6ba96e8f0cc10c64f0bdf0
1010
refs/heads/dist-snap: 2f32a1581f522e524009138b33b1c7049ced668d
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/incoming/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/incoming/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/incoming/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)