diff options
| author | bobtwinkles <srkoser+github@gmail.com> | 2018-03-09 19:02:22 -0500 |
|---|---|---|
| committer | bobtwinkles <srkoser+github@gmail.com> | 2018-03-09 19:02:22 -0500 |
| commit | 9a5d61a840b2dd3dc6d069750945759035c85286 (patch) | |
| tree | c367865d629edbf95233c4a221a96ac65658c2c4 | |
| parent | 8b4c623702225931811893ae21145b951358f552 (diff) | |
Remove some commented out code
Left over from prior experimentation, no longer required.
| -rw-r--r-- | src/librustc_mir/dataflow/impls/borrows.rs | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/librustc_mir/dataflow/impls/borrows.rs b/src/librustc_mir/dataflow/impls/borrows.rs index 9a5221a3257..499ed55fad4 100644 --- a/src/librustc_mir/dataflow/impls/borrows.rs +++ b/src/librustc_mir/dataflow/impls/borrows.rs @@ -332,18 +332,6 @@ impl<'a, 'gcx, 'tcx> Borrows<'a, 'gcx, 'tcx> { self.super_place(place, context, location); } - - /* - fn visit_statement(&mut self, - block: BasicBlock, - statement: &mir::Statement<'tcx>, - location: Location) { - if let mir::StatementKind::StorageDead(loc) = *statement { - } - - self.super_statement(block, statement, location); - } - */ } impl<'a, 'gcx, 'tcx> GatherBorrows<'a, 'gcx, 'tcx> { |
