diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-12-13 15:55:05 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-12-13 16:15:08 -0800 |
| commit | e7ef82dd7079bbbdb9db0c22fde0c750b2e4de8c (patch) | |
| tree | 58118edb33536c8c69df4126b6e5f03ee4c626d8 /src/libcore/float.rs | |
| parent | 732c39c183bf6a2633095557aa9a3c3c48b84b1b (diff) | |
| download | rust-e7ef82dd7079bbbdb9db0c22fde0c750b2e4de8c.tar.gz rust-e7ef82dd7079bbbdb9db0c22fde0c750b2e4de8c.zip | |
Change some uses of static methods to use the trait path
Diffstat (limited to 'src/libcore/float.rs')
| -rw-r--r-- | src/libcore/float.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/float.rs b/src/libcore/float.rs index 2a86d7ae04f..2ea9c5925ef 100644 --- a/src/libcore/float.rs +++ b/src/libcore/float.rs @@ -36,7 +36,7 @@ pub use f64::{modf, pow, round, sinh, tanh, tgamma, trunc}; pub use f64::signbit; pub use f64::{j0, j1, jn, y0, y1, yn}; use cmp::{Eq, Ord}; -use num::from_int; +use num::Num::from_int; pub const NaN: float = 0.0/0.0; |
