about summary refs log tree commit diff
path: root/compiler/rustc_incremental/src
diff options
context:
space:
mode:
authorMichael Woerister <michaelwoerister@posteo>2022-07-08 18:06:18 +0200
committerMichael Woerister <michaelwoerister@posteo>2022-07-20 13:11:39 +0200
commit88f6c6d8a0245938f9f49e8b088114d6862e793d (patch)
treeb7fe1673ec1dd989ffe2368d494f1e87a3102888 /compiler/rustc_incremental/src
parentb8138db0ffbb7d29e5af2482c6eb0ef4e117d4a3 (diff)
downloadrust-88f6c6d8a0245938f9f49e8b088114d6862e793d.tar.gz
rust-88f6c6d8a0245938f9f49e8b088114d6862e793d.zip
Remove unused StableMap and StableSet types from rustc_data_structures
Diffstat (limited to 'compiler/rustc_incremental/src')
-rw-r--r--compiler/rustc_incremental/src/assert_module_sources.rs2
-rw-r--r--compiler/rustc_incremental/src/persist/work_product.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_incremental/src/assert_module_sources.rs b/compiler/rustc_incremental/src/assert_module_sources.rs
index 00aefac645f..89d419bc8e9 100644
--- a/compiler/rustc_incremental/src/assert_module_sources.rs
+++ b/compiler/rustc_incremental/src/assert_module_sources.rs
@@ -23,7 +23,7 @@
 //! was re-used.
 
 use rustc_ast as ast;
-use rustc_data_structures::stable_set::FxHashSet;
+use rustc_data_structures::fx::FxHashSet;
 use rustc_hir::def_id::LOCAL_CRATE;
 use rustc_middle::mir::mono::CodegenUnitNameBuilder;
 use rustc_middle::ty::TyCtxt;
diff --git a/compiler/rustc_incremental/src/persist/work_product.rs b/compiler/rustc_incremental/src/persist/work_product.rs
index 1b184eca964..2f1853c441e 100644
--- a/compiler/rustc_incremental/src/persist/work_product.rs
+++ b/compiler/rustc_incremental/src/persist/work_product.rs
@@ -3,7 +3,7 @@
 //! [work products]: WorkProduct
 
 use crate::persist::fs::*;
-use rustc_data_structures::stable_map::FxHashMap;
+use rustc_data_structures::fx::FxHashMap;
 use rustc_fs_util::link_or_copy;
 use rustc_middle::dep_graph::{WorkProduct, WorkProductId};
 use rustc_session::Session;