We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e1b9081 + effc509 commit af77cf0Copy full SHA for af77cf0
compiler/rustc_middle/src/query/mod.rs
@@ -1178,11 +1178,10 @@ rustc_queries! {
1178
1179
/// Return the live symbols in the crate for dead code check.
1180
///
1181
- /// The second return value maps from ADTs to ignored derived traits (e.g. Debug and Clone) and
1182
- /// their respective impl (i.e., part of the derive macro)
+ /// The second return value maps from ADTs to ignored derived traits (e.g. Debug and Clone).
1183
query live_symbols_and_ignored_derived_traits(_: ()) -> &'tcx (
1184
LocalDefIdSet,
1185
- LocalDefIdMap<FxIndexSet<(DefId, DefId)>>
+ LocalDefIdMap<FxIndexSet<DefId>>,
1186
) {
1187
arena_cache
1188
desc { "finding live symbols in crate" }
0 commit comments