Skip to content

Commit

Permalink
Remove cmp::Ordering::* public reexport
Browse files Browse the repository at this point in the history
Part of rust-lang#19253

I would have removed this public reexport in rust-lang#19842, but rust-lang#19812 hadn't merged (and snapshotted) at the time

In rust-lang#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

1 comment on commit 02feaf2

@alexcrichton
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

r+, thanks!

Please sign in to comment.