Skip to content

Commit fdb2f7f

Browse files
committed
tidy fixes
1 parent 0c7fc04 commit fdb2f7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustc_mir/util/collect_writes.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ impl<'tcx> Visitor<'tcx> for FindLocalAssignmentVisitor {
5353
}
5454

5555
crate trait FindAssignments {
56-
fn find_assignments(&self, local: Local) -> Vec<Location>;
56+
fn find_assignments(&self, local: Local) -> Vec<Location>;
5757
}
58-
58+
5959
impl<'tcx> FindAssignments for Mir<'tcx>{
6060
fn find_assignments(&self, local: Local) -> Vec<Location>{
6161
let mut visitor = FindLocalAssignmentVisitor{ needle: local, locations: vec![]};

0 commit comments

Comments
 (0)