diff options
| author | Michael Woerister <michaelwoerister@posteo> | 2022-07-08 18:06:18 +0200 |
|---|---|---|
| committer | Michael Woerister <michaelwoerister@posteo> | 2022-07-20 13:11:39 +0200 |
| commit | 88f6c6d8a0245938f9f49e8b088114d6862e793d (patch) | |
| tree | b7fe1673ec1dd989ffe2368d494f1e87a3102888 /compiler/rustc_ty_utils/src/representability.rs | |
| parent | b8138db0ffbb7d29e5af2482c6eb0ef4e117d4a3 (diff) | |
| download | rust-88f6c6d8a0245938f9f49e8b088114d6862e793d.tar.gz rust-88f6c6d8a0245938f9f49e8b088114d6862e793d.zip | |
Remove unused StableMap and StableSet types from rustc_data_structures
Diffstat (limited to 'compiler/rustc_ty_utils/src/representability.rs')
| -rw-r--r-- | compiler/rustc_ty_utils/src/representability.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_ty_utils/src/representability.rs b/compiler/rustc_ty_utils/src/representability.rs index 7efc82efd15..eded7891682 100644 --- a/compiler/rustc_ty_utils/src/representability.rs +++ b/compiler/rustc_ty_utils/src/representability.rs @@ -1,5 +1,5 @@ //! Check whether a type is representable. -use rustc_data_structures::stable_map::FxHashMap; +use rustc_data_structures::fx::FxHashMap; use rustc_hir as hir; use rustc_middle::ty::{self, Ty, TyCtxt}; use rustc_span::Span; |
