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 | 4f118ce1024444988efd9dbd2a2886cb826ce86f (patch) | |
| tree | 08ef5aaf1b8f594f614a538e12564c17449cd65d | |
| parent | bca7b0279f02a64ba758a8092cdb400dea26f9b7 (diff) | |
| download | rust-4f118ce1024444988efd9dbd2a2886cb826ce86f.tar.gz rust-4f118ce1024444988efd9dbd2a2886cb826ce86f.zip | |
Remove unused StableMap and StableSet types from rustc_data_structures
| -rw-r--r-- | src/abi.rs | 2 | ||||
| -rw-r--r-- | src/builder.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/abi.rs b/src/abi.rs index 2c796d0f69e..0ed3e1fbe93 100644 --- a/src/abi.rs +++ b/src/abi.rs @@ -1,6 +1,6 @@ use gccjit::{ToLValue, ToRValue, Type}; use rustc_codegen_ssa::traits::{AbiBuilderMethods, BaseTypeMethods}; -use rustc_data_structures::stable_set::FxHashSet; +use rustc_data_structures::fx::FxHashSet; use rustc_middle::bug; use rustc_middle::ty::Ty; use rustc_target::abi::call::{CastTarget, FnAbi, PassMode, Reg, RegKind}; diff --git a/src/builder.rs b/src/builder.rs index fa490fe3f22..6221a7f6d93 100644 --- a/src/builder.rs +++ b/src/builder.rs @@ -30,7 +30,7 @@ use rustc_codegen_ssa::traits::{ OverflowOp, StaticBuilderMethods, }; -use rustc_data_structures::stable_set::FxHashSet; +use rustc_data_structures::fx::FxHashSet; use rustc_middle::ty::{ParamEnv, Ty, TyCtxt}; use rustc_middle::ty::layout::{FnAbiError, FnAbiOfHelpers, FnAbiRequest, HasParamEnv, HasTyCtxt, LayoutError, LayoutOfHelpers, TyAndLayout}; use rustc_span::Span; |
