diff options
| author | Camille GILLOT <gillot.camille@gmail.com> | 2021-05-11 10:38:54 +0200 |
|---|---|---|
| committer | Camille GILLOT <gillot.camille@gmail.com> | 2021-05-30 19:54:21 +0200 |
| commit | ee567fe1b1188077743263bebfefc3d2b7cdbcd2 (patch) | |
| tree | 03c3f9e6c0bf0d0f1abb769af2b31aee3266224c /compiler/rustc_middle/src/query | |
| parent | 10fb4b2fe538df29ee9729f060db0ca74f6c28fb (diff) | |
| download | rust-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.rs | 2 |
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" } } |
