@@ -19,7 +19,7 @@ use errors::FatalError;
1919use syntax_pos:: { Span , DUMMY_SP , symbol:: InternedString } ;
2020use syntax:: source_map:: Spanned ;
2121use rustc_target:: spec:: abi:: Abi ;
22- use syntax:: ast:: { self , CrateSugar , Ident , Name , NodeId , DUMMY_NODE_ID , AsmDialect } ;
22+ use syntax:: ast:: { self , CrateSugar , Ident , Name , NodeId , AsmDialect } ;
2323use syntax:: ast:: { Attribute , Label , Lit , StrStyle , FloatTy , IntTy , UintTy } ;
2424use syntax:: attr:: { InlineAttr , OptimizeAttr } ;
2525use syntax:: ext:: hygiene:: SyntaxContext ;
@@ -583,7 +583,6 @@ impl Generics {
583583 Generics {
584584 params : HirVec :: new ( ) ,
585585 where_clause : WhereClause {
586- id : DUMMY_NODE_ID ,
587586 hir_id : DUMMY_HIR_ID ,
588587 predicates : HirVec :: new ( ) ,
589588 } ,
@@ -628,7 +627,6 @@ pub enum SyntheticTyParamKind {
628627/// A where-clause in a definition.
629628#[ derive( Clone , RustcEncodable , RustcDecodable , Debug ) ]
630629pub struct WhereClause {
631- pub id : NodeId ,
632630 pub hir_id : HirId ,
633631 pub predicates : HirVec < WherePredicate > ,
634632}
0 commit comments