about summary refs log tree commit diff
path: root/compiler/rustc_traits/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_traits/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_traits/src')
-rw-r--r--compiler/rustc_traits/src/implied_outlives_bounds.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_traits/src/implied_outlives_bounds.rs b/compiler/rustc_traits/src/implied_outlives_bounds.rs
index c7cac8fca89..4d4d55de5f4 100644
--- a/compiler/rustc_traits/src/implied_outlives_bounds.rs
+++ b/compiler/rustc_traits/src/implied_outlives_bounds.rs
@@ -47,7 +47,7 @@ fn compute_implied_outlives_bounds<'tcx>(
     // process it next. Because the resulting predicates aren't always
     // guaranteed to be a subset of the original type, so we need to store the
     // WF args we've computed in a set.
-    let mut checked_wf_args = rustc_data_structures::stable_set::FxHashSet::default();
+    let mut checked_wf_args = rustc_data_structures::fx::FxHashSet::default();
     let mut wf_args = vec![ty.into()];
 
     let mut implied_bounds = vec![];