Remove cmp::Ordering::* public reexport
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]
This commit is contained in:
parent
34d6800092
commit
02feaf2a80
2 changed files with 2 additions and 1 deletions
|
|
@ -41,7 +41,7 @@
|
|||
|
||||
#![stable]
|
||||
|
||||
pub use self::Ordering::*;
|
||||
use self::Ordering::*;
|
||||
|
||||
use kinds::Sized;
|
||||
use option::Option::{mod, Some, None};
|
||||
|
|
|
|||
|
|
@ -69,6 +69,7 @@
|
|||
|
||||
use clone::Clone;
|
||||
use cmp::*;
|
||||
use cmp::Ordering::*;
|
||||
use default::Default;
|
||||
use option::Option;
|
||||
use option::Option::Some;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue