Skip to content

Commit

Permalink
rollup merge of rust-lang#20140: frewsxcv/rm-reexports
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
alexcrichton committed Dec 22, 2014
2 parents ca441df + 02feaf2 commit fac17de
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 fac17de

Please sign in to comment.