Skip to content

Commit 3786b55

Browse files
committed
auto merge of #13248 : tedhorst/rust/master, r=alexcrichton
2 parents 21273d5 + a8308fb commit 3786b55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libnum/complex.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ use std::num::{Zero,One,ToStrRadix};
2525
#[deriving(Eq,Clone)]
2626
pub struct Cmplx<T> {
2727
/// Real portion of the complex number
28-
re: T,
28+
pub re: T,
2929
/// Imaginary portion of the complex number
30-
im: T
30+
pub im: T
3131
}
3232

3333
pub type Complex32 = Cmplx<f32>;

0 commit comments

Comments
 (0)