about summary refs log tree commit diff
path: root/src/libsyntax_ext
diff options
context:
space:
mode:
authorMatthew Jasper <mjjasper1@gmail.com>2019-05-25 10:11:48 +0100
committerMatthew Jasper <mjjasper1@gmail.com>2019-06-18 22:54:51 +0100
commit63edd2c35892c81fe3f071e7e259437de9557845 (patch)
tree2a16eeabd1bd81be950d602b3726029940284d12 /src/libsyntax_ext
parent04a3dd8a872633ca1e4c217d11f741cc35cb19a5 (diff)
downloadrust-63edd2c35892c81fe3f071e7e259437de9557845.tar.gz
rust-63edd2c35892c81fe3f071e7e259437de9557845.zip
Remove the HirId/NodeId from where clauses
Also give them a span in the HIR
Diffstat (limited to 'src/libsyntax_ext')
-rw-r--r--src/libsyntax_ext/deriving/generic/ty.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libsyntax_ext/deriving/generic/ty.rs b/src/libsyntax_ext/deriving/generic/ty.rs
index 362ea9ed229..90d826429da 100644
--- a/src/libsyntax_ext/deriving/generic/ty.rs
+++ b/src/libsyntax_ext/deriving/generic/ty.rs
@@ -223,7 +223,6 @@ fn mk_generics(params: Vec<ast::GenericParam>, span: Span) -> Generics {
     Generics {
         params,
         where_clause: ast::WhereClause {
-            id: ast::DUMMY_NODE_ID,
             predicates: Vec::new(),
             span,
         },