about summary refs log tree commit diff
path: root/compiler/rustc_middle/src/query
diff options
context:
space:
mode:
authorCamille GILLOT <gillot.camille@gmail.com>2021-05-11 10:38:54 +0200
committerCamille GILLOT <gillot.camille@gmail.com>2021-05-30 19:54:21 +0200
commitee567fe1b1188077743263bebfefc3d2b7cdbcd2 (patch)
tree03c3f9e6c0bf0d0f1abb769af2b31aee3266224c /compiler/rustc_middle/src/query
parent10fb4b2fe538df29ee9729f060db0ca74f6c28fb (diff)
downloadrust-ee567fe1b1188077743263bebfefc3d2b7cdbcd2.tar.gz
rust-ee567fe1b1188077743263bebfefc3d2b7cdbcd2.zip
Remove StableVec.
Diffstat (limited to 'compiler/rustc_middle/src/query')
-rw-r--r--compiler/rustc_middle/src/query/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_middle/src/query/mod.rs b/compiler/rustc_middle/src/query/mod.rs
index 9bf69906911..d8a18b5a2d3 100644
--- a/compiler/rustc_middle/src/query/mod.rs
+++ b/compiler/rustc_middle/src/query/mod.rs
@@ -1133,7 +1133,7 @@ rustc_queries! {
         desc { "computing whether impls specialize one another" }
     }
     query in_scope_traits_map(_: LocalDefId)
-        -> Option<&'tcx FxHashMap<ItemLocalId, StableVec<TraitCandidate>>> {
+        -> Option<&'tcx FxHashMap<ItemLocalId, Box<[TraitCandidate]>>> {
         desc { "traits in scope at a block" }
     }