about summary refs log tree commit diff
path: root/src/librustc_codegen_utils
diff options
context:
space:
mode:
authorCamille GILLOT <gillot.camille@gmail.com>2019-11-28 22:16:44 +0100
committerCamille GILLOT <gillot.camille@gmail.com>2019-12-21 23:31:47 +0100
commit5fec1ca0ff5727d1f4474f8dc3edf7c631baf712 (patch)
tree63e837c8c93696b5b311f9927e059e0e3079f9eb /src/librustc_codegen_utils
parent0f7d77363b551eb9a1dc4ae348d213180eae070d (diff)
downloadrust-5fec1ca0ff5727d1f4474f8dc3edf7c631baf712.tar.gz
rust-5fec1ca0ff5727d1f4474f8dc3edf7c631baf712.zip
Use Arena inside hir::ImplItem.
Diffstat (limited to 'src/librustc_codegen_utils')
-rw-r--r--src/librustc_codegen_utils/symbol_names_test.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_codegen_utils/symbol_names_test.rs b/src/librustc_codegen_utils/symbol_names_test.rs
index 1a21be66c43..893aea16fd2 100644
--- a/src/librustc_codegen_utils/symbol_names_test.rs
+++ b/src/librustc_codegen_utils/symbol_names_test.rs
@@ -65,7 +65,7 @@ impl hir::itemlikevisit::ItemLikeVisitor<'tcx> for SymbolNamesTest<'tcx> {
         self.process_attrs(trait_item.hir_id);
     }
 
-    fn visit_impl_item(&mut self, impl_item: &'tcx hir::ImplItem) {
+    fn visit_impl_item(&mut self, impl_item: &'tcx hir::ImplItem<'tcx>) {
         self.process_attrs(impl_item.hir_id);
     }
 }