@@ -1168,8 +1168,6 @@ pub struct Resolver<'ra, 'tcx> {
11681168 node_id_to_def_id : NodeMap < Feed < ' tcx , LocalDefId > > ,
11691169 def_id_to_node_id : IndexVec < LocalDefId , ast:: NodeId > ,
11701170
1171- autodiff_map : FxHashMap < LocalDefId , LocalDefId > ,
1172-
11731171 /// Indices of unnamed struct or variant fields with unresolved attributes.
11741172 placeholder_field_indices : FxHashMap < NodeId , usize > ,
11751173 /// When collecting definitions from an AST fragment produced by a macro invocation `ExpnId`
@@ -1541,7 +1539,6 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
15411539 next_node_id : CRATE_NODE_ID ,
15421540 node_id_to_def_id,
15431541 def_id_to_node_id,
1544- autodiff_map : Default :: default ( ) ,
15451542 placeholder_field_indices : Default :: default ( ) ,
15461543 invocation_parents,
15471544 trait_impl_items : Default :: default ( ) ,
@@ -1671,7 +1668,6 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
16711668 . into_items ( )
16721669 . map ( |( k, f) | ( k, f. key ( ) ) )
16731670 . collect ( ) ,
1674- autodiff_map : self . autodiff_map ,
16751671 trait_map : self . trait_map ,
16761672 lifetime_elision_allowed : self . lifetime_elision_allowed ,
16771673 lint_buffer : Steal :: new ( self . lint_buffer ) ,
0 commit comments