diff options
| author | Corey Farwell <coreyf@rwell.org> | 2014-12-22 11:09:55 -0800 |
|---|---|---|
| committer | Corey Farwell <coreyf@rwell.org> | 2014-12-22 11:28:23 -0800 |
| commit | 02feaf2a804e4e810d5a3adbedbcbe3905692286 (patch) | |
| tree | 0f09a31da368cf527a633f6a8d08700e1c17b080 | |
| parent | 34d680009205de2302b902d8f9f5f7ae7a042f1a (diff) | |
| download | rust-02feaf2a804e4e810d5a3adbedbcbe3905692286.tar.gz rust-02feaf2a804e4e810d5a3adbedbcbe3905692286.zip | |
Remove cmp::Ordering::* public reexport
Part of #19253 I would have removed this public reexport in #19842, but #19812 hadn't merged (and snapshotted) at the time In #19407, I changed the codebase to stop utilizing this reexport [breaking-change]
| -rw-r--r-- | src/libcore/cmp.rs | 2 | ||||
| -rw-r--r-- | src/libcore/tuple.rs | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/libcore/cmp.rs b/src/libcore/cmp.rs index 6e793be67e2..ca523db214b 100644 --- a/src/libcore/cmp.rs +++ b/src/libcore/cmp.rs @@ -41,7 +41,7 @@ #![stable] -pub use self::Ordering::*; +use self::Ordering::*; use kinds::Sized; use option::Option::{mod, Some, None}; diff --git a/src/libcore/tuple.rs b/src/libcore/tuple.rs index 89aed148792..a92914c99e3 100644 --- a/src/libcore/tuple.rs +++ b/src/libcore/tuple.rs @@ -69,6 +69,7 @@ use clone::Clone; use cmp::*; +use cmp::Ordering::*; use default::Default; use option::Option; use option::Option::Some; |
