Skip to content

Commit 703246c

Browse files
committed
---
yaml --- r: 110333 b: refs/heads/try c: 0b36e9d h: refs/heads/master i: 110331: 59f2d7f v: v3
1 parent 82d939f commit 703246c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
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: e415c25bcd81dc1f9a5a3d25d9b48ed2d545336b
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: c7fac4471201977fdb1c0c0a26c87287e12dc644
5-
refs/heads/try: b9b0ed521da4f0ff7e9d0ff4ca54a4f73b2d9cbd
5+
refs/heads/try: 0b36e9d913c3321206e6c783b2498aae18d950b8
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/src/libnum/bigint.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ A `BigUint`-typed value `BigUint { data: ~[a, b, c] }` represents a number
8686
*/
8787
#[deriving(Clone)]
8888
pub struct BigUint {
89-
priv data: Vec<BigDigit>
89+
data: Vec<BigDigit>
9090
}
9191

9292
impl Eq for BigUint {
@@ -863,8 +863,8 @@ impl Neg<Sign> for Sign {
863863
/// A big signed integer type.
864864
#[deriving(Clone)]
865865
pub struct BigInt {
866-
priv sign: Sign,
867-
priv data: BigUint
866+
sign: Sign,
867+
data: BigUint
868868
}
869869

870870
impl Eq for BigInt {

branches/try/src/libnum/rational.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ use bigint::{BigInt, BigUint, Sign, Plus, Minus};
2222
#[deriving(Clone)]
2323
#[allow(missing_doc)]
2424
pub struct Ratio<T> {
25-
priv numer: T,
26-
priv denom: T
25+
numer: T,
26+
denom: T
2727
}
2828

2929
/// Alias for a `Ratio` of machine-sized integers.

0 commit comments

Comments
 (0)