about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-12-22 12:48:16 -0800
committerAlex Crichton <alex@alexcrichton.com>2014-12-22 12:48:16 -0800
commitfac17defcb8d0642c25bf8f791e1dc5b4e110be8 (patch)
tree7722193c7a04d96b1884de564e744aebecbe10f1 /src
parentca441df82a1b6c79c67119624255132352167909 (diff)
parent02feaf2a804e4e810d5a3adbedbcbe3905692286 (diff)
downloadrust-fac17defcb8d0642c25bf8f791e1dc5b4e110be8.tar.gz
rust-fac17defcb8d0642c25bf8f791e1dc5b4e110be8.zip
rollup merge of #20140: frewsxcv/rm-reexports
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]
Diffstat (limited to 'src')
-rw-r--r--src/libcore/cmp.rs2
-rw-r--r--src/libcore/tuple.rs1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/libcore/cmp.rs b/src/libcore/cmp.rs
index 6e793be67e2..ca523db214b 100644
--- a/src/libcore/cmp.rs
+++ b/src/libcore/cmp.rs
@@ -41,7 +41,7 @@
 
 #![stable]
 
-pub use self::Ordering::*;
+use self::Ordering::*;
 
 use kinds::Sized;
 use option::Option::{mod, Some, None};
diff --git a/src/libcore/tuple.rs b/src/libcore/tuple.rs
index 89aed148792..a92914c99e3 100644
--- a/src/libcore/tuple.rs
+++ b/src/libcore/tuple.rs
@@ -69,6 +69,7 @@
 
 use clone::Clone;
 use cmp::*;
+use cmp::Ordering::*;
 use default::Default;
 use option::Option;
 use option::Option::Some;