Skip to content

Commit

Permalink
Remove cmp::Ordering::* public reexport
Browse files Browse the repository at this point in the history
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]
  • Loading branch information
frewsxcv committed Dec 22, 2014
1 parent 34d6800 commit 02feaf2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcore/cmp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
#![stable]

pub use self::Ordering::*;
use self::Ordering::*;

use kinds::Sized;
use option::Option::{mod, Some, None};
Expand Down
1 change: 1 addition & 0 deletions src/libcore/tuple.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@

use clone::Clone;
use cmp::*;
use cmp::Ordering::*;
use default::Default;
use option::Option;
use option::Option::Some;
Expand Down

0 comments on commit 02feaf2

Please sign in to comment.