Skip to content

Commit fac17de

Browse files
committed
rollup merge of rust-lang#20140: frewsxcv/rm-reexports
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]
2 parents ca441df + 02feaf2 commit fac17de

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/libcore/cmp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
4242
#![stable]
4343

44-
pub use self::Ordering::*;
44+
use self::Ordering::*;
4545

4646
use kinds::Sized;
4747
use option::Option::{mod, Some, None};

src/libcore/tuple.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969

7070
use clone::Clone;
7171
use cmp::*;
72+
use cmp::Ordering::*;
7273
use default::Default;
7374
use option::Option;
7475
use option::Option::Some;

0 commit comments

Comments
 (0)