From 42c8803fe86dec00df2f5794e5f57aa78b54c8ee Mon Sep 17 00:00:00 2001 From: Nicholas Nethercote Date: Wed, 18 Oct 2023 14:21:23 +1100 Subject: [PATCH] Remove empty `MirUsedCollector::visit_local`. It has not effect, because the default `visit_local` in `mir::Visitor` is already empty. --- compiler/rustc_monomorphize/src/collector.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/compiler/rustc_monomorphize/src/collector.rs b/compiler/rustc_monomorphize/src/collector.rs index 6ea177bb6ea..e9fbc20f93d 100644 --- a/compiler/rustc_monomorphize/src/collector.rs +++ b/compiler/rustc_monomorphize/src/collector.rs @@ -874,14 +874,6 @@ impl<'a, 'tcx> MirVisitor<'tcx> for MirUsedCollector<'a, 'tcx> { self.super_operand(operand, location); self.check_operand_move_size(operand, location); } - - fn visit_local( - &mut self, - _place_local: Local, - _context: mir::visit::PlaceContext, - _location: Location, - ) { - } } fn visit_drop_use<'tcx>(