diff options
| author | Wesley Wiser <wwiser@gmail.com> | 2019-08-14 08:08:17 -0400 |
|---|---|---|
| committer | Wesley Wiser <wwiser@gmail.com> | 2019-08-22 06:36:31 -0400 |
| commit | 34fe28bc67817db6743654f8eef8bbf8244f57bf (patch) | |
| tree | 22d070c3f693e0a6895f99bf42b6cda9137d1011 /src/librustc | |
| parent | 4d62545687d0c10577eb75c058c0662e6b261395 (diff) | |
| download | rust-34fe28bc67817db6743654f8eef8bbf8244f57bf.tar.gz rust-34fe28bc67817db6743654f8eef8bbf8244f57bf.zip | |
Fix tidy
Diffstat (limited to 'src/librustc')
| -rw-r--r-- | src/librustc/query/mod.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/librustc/query/mod.rs b/src/librustc/query/mod.rs index e1dbaeb5b17..c4f7ca51f4a 100644 --- a/src/librustc/query/mod.rs +++ b/src/librustc/query/mod.rs @@ -110,7 +110,11 @@ rustc_queries! { no_hash } - query mir_validated(_: DefId) -> (&'tcx Steal<mir::Body<'tcx>>, &'tcx Steal<IndexVec<mir::Promoted, mir::Body<'tcx>>>) { + query mir_validated(_: DefId) -> + ( + &'tcx Steal<mir::Body<'tcx>>, + &'tcx Steal<IndexVec<mir::Promoted, mir::Body<'tcx>>> + ) { no_hash } |
