diff options
| author | John Kåre Alsaker <john.kare.alsaker@gmail.com> | 2018-11-30 21:23:01 +0100 |
|---|---|---|
| committer | John Kåre Alsaker <john.kare.alsaker@gmail.com> | 2019-05-23 18:51:43 +0200 |
| commit | 093940ddc44c4c7c97fbc35a3900fdc98a245dfc (patch) | |
| tree | 6f6acd623be97ac513db3674c57728ae0acc8d18 /src/librustc/query | |
| parent | 95dfd826667f52b9b67bfa531169b1a1285bc937 (diff) | |
| download | rust-093940ddc44c4c7c97fbc35a3900fdc98a245dfc.tar.gz rust-093940ddc44c4c7c97fbc35a3900fdc98a245dfc.zip | |
Update implementations_of_trait and all_trait_implementations
Diffstat (limited to 'src/librustc/query')
| -rw-r--r-- | src/librustc/query/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc/query/mod.rs b/src/librustc/query/mod.rs index 2e2cb2db838..d6dbd49d173 100644 --- a/src/librustc/query/mod.rs +++ b/src/librustc/query/mod.rs @@ -724,12 +724,12 @@ rustc_queries! { TypeChecking { query implementations_of_trait(_: (CrateNum, DefId)) - -> Lrc<Vec<DefId>> { + -> &'tcx [DefId] { no_force desc { "looking up implementations of a trait in a crate" } } query all_trait_implementations(_: CrateNum) - -> Lrc<Vec<DefId>> { + -> &'tcx [DefId] { desc { "looking up all (?) trait implementations" } } } |
