diff options
| author | Ben Striegel <ben.striegel@gmail.com> | 2012-06-09 01:36:26 -0400 |
|---|---|---|
| committer | Ben Striegel <ben.striegel@gmail.com> | 2012-06-09 01:36:26 -0400 |
| commit | d14d4155dead7a18b2d5b8dcac1dd7311a26900a (patch) | |
| tree | f393d30d861f2bd945668ffada546a8a5cb97b8c | |
| parent | 56c6c65186ef37ef1592515f5f7b0062acb49153 (diff) | |
| download | rust-d14d4155dead7a18b2d5b8dcac1dd7311a26900a.tar.gz rust-d14d4155dead7a18b2d5b8dcac1dd7311a26900a.zip | |
Allow multiple `num` impls to be imported at once
If we import num::num, it gets reexported implicitly and causes collisions if you try to import (for example) int::num and i8::num at the same time.
| -rw-r--r-- | src/libcore/int-template.rs | 5 | ||||
| -rw-r--r-- | src/libcore/uint-template.rs | 3 |
2 files changed, 3 insertions, 5 deletions
diff --git a/src/libcore/int-template.rs b/src/libcore/int-template.rs index 2ea166cfc36..cfe61697608 100644 --- a/src/libcore/int-template.rs +++ b/src/libcore/int-template.rs @@ -1,6 +1,5 @@ import T = inst::T; import cmp::{eq, ord}; -import num::num; export min_value, max_value; export min, max; @@ -124,7 +123,7 @@ impl eq of eq for T { } } -impl num of num for T { +impl num of num::num for T { fn add(&&other: T) -> T { ret self + other; } fn sub(&&other: T) -> T { ret self - other; } fn mul(&&other: T) -> T { ret self * other; } @@ -196,7 +195,7 @@ fn test_to_str() { #[test] fn test_ifaces() { - fn test<U:num>(ten: U) { + fn test<U:num::num>(ten: U) { assert (ten.to_int() == 10); let two = ten.from_int(2); diff --git a/src/libcore/uint-template.rs b/src/libcore/uint-template.rs index 8a79270361d..cb9b759eeae 100644 --- a/src/libcore/uint-template.rs +++ b/src/libcore/uint-template.rs @@ -1,6 +1,5 @@ import T = inst::T; import cmp::{eq, ord}; -import num::num; export min_value, max_value; export min, max; @@ -65,7 +64,7 @@ impl eq of eq for T { } } -impl num of num for T { +impl num of num::num for T { fn add(&&other: T) -> T { ret self + other; } fn sub(&&other: T) -> T { ret self - other; } fn mul(&&other: T) -> T { ret self * other; } |
