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]
This commit is contained in:
Corey Farwell 2014-12-22 11:09:55 -08:00
parent 34d6800092
commit 02feaf2a80
2 changed files with 2 additions and 1 deletions

View file

@ -41,7 +41,7 @@
#![stable]
pub use self::Ordering::*;
use self::Ordering::*;
use kinds::Sized;
use option::Option::{mod, Some, None};

View file

@ -69,6 +69,7 @@
use clone::Clone;
use cmp::*;
use cmp::Ordering::*;
use default::Default;
use option::Option;
use option::Option::Some;