diff options
| author | Ralf Jung <post@ralfj.de> | 2018-10-24 17:27:16 +0200 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2018-10-29 09:16:27 +0100 |
| commit | c5abbd4be360cb433a84d86aa6d7cc6e63258a3b (patch) | |
| tree | 1d79ea5c1225cbd7908345d4007a281c709de827 | |
| parent | 07829bc0f09a80d64487318f7e7ad44b701dac8b (diff) | |
| download | rust-c5abbd4be360cb433a84d86aa6d7cc6e63258a3b.tar.gz rust-c5abbd4be360cb433a84d86aa6d7cc6e63258a3b.zip | |
all hail tidy
| -rw-r--r-- | src/librustc/mir/visit.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/librustc/mir/visit.rs b/src/librustc/mir/visit.rs index aa4004cf07b..4d3135f9d41 100644 --- a/src/librustc/mir/visit.rs +++ b/src/librustc/mir/visit.rs @@ -413,7 +413,8 @@ macro_rules! make_mir_visitor { self.visit_operand(input, location); } } - StatementKind::Retag { ref $($mutability)* fn_entry, ref $($mutability)* place } => { + StatementKind::Retag { ref $($mutability)* fn_entry, + ref $($mutability)* place } => { self.visit_retag(fn_entry, place, location); } StatementKind::AscribeUserType( |
