diff options
| author | KaDiWa <kalle.wachsmuth@gmail.com> | 2022-08-09 02:14:43 +0200 |
|---|---|---|
| committer | KaDiWa <kalle.wachsmuth@gmail.com> | 2022-12-10 18:45:34 +0100 |
| commit | 9bc69925cb4a1391a9a41411c56ae059877bf8fb (patch) | |
| tree | 1fc65519e8e94f6b36d1fe27e6be25136db3dc22 /compiler/rustc_data_structures/src/owning_ref/mod.rs | |
| parent | a161a7b654083a881b22908a475988bcc3221a79 (diff) | |
| download | rust-9bc69925cb4a1391a9a41411c56ae059877bf8fb.tar.gz rust-9bc69925cb4a1391a9a41411c56ae059877bf8fb.zip | |
compiler: remove unnecessary imports and qualified paths
Diffstat (limited to 'compiler/rustc_data_structures/src/owning_ref/mod.rs')
| -rw-r--r-- | compiler/rustc_data_structures/src/owning_ref/mod.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/compiler/rustc_data_structures/src/owning_ref/mod.rs b/compiler/rustc_data_structures/src/owning_ref/mod.rs index 980a540ccba..d1d92b905b8 100644 --- a/compiler/rustc_data_structures/src/owning_ref/mod.rs +++ b/compiler/rustc_data_structures/src/owning_ref/mod.rs @@ -867,11 +867,9 @@ where ///////////////////////////////////////////////////////////////////////////// use std::borrow::Borrow; -use std::cmp::{Eq, Ord, Ordering, PartialEq, PartialOrd}; -use std::convert::From; +use std::cmp::Ordering; use std::fmt::{self, Debug}; use std::hash::{Hash, Hasher}; -use std::marker::{Send, Sync}; impl<O, T: ?Sized> Deref for OwningRef<O, T> { type Target = T; @@ -1096,7 +1094,6 @@ where // std types integration and convenience type defs ///////////////////////////////////////////////////////////////////////////// -use std::boxed::Box; use std::cell::{Ref, RefCell, RefMut}; use std::rc::Rc; use std::sync::Arc; |
