diff options
| author | Austin Hicks <camlorn@camlorn.net> | 2016-11-30 16:21:40 -0500 |
|---|---|---|
| committer | Austin Hicks <camlorn@camlorn.net> | 2016-12-14 12:28:25 -0500 |
| commit | a65cc1ea546bca6cccf4e479e4acd09a8a839ce0 (patch) | |
| tree | 62dc4b7b946e79c9dd203898133109c34e093226 /src | |
| parent | cfe1a776ee77697b5947849a71b411978eb23a28 (diff) | |
| download | rust-a65cc1ea546bca6cccf4e479e4acd09a8a839ce0.tar.gz rust-a65cc1ea546bca6cccf4e479e4acd09a8a839ce0.zip | |
Fix error introduced during last rebase
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustc/ty/layout.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/ty/layout.rs b/src/librustc/ty/layout.rs index 96d66153d77..8021fc3ba15 100644 --- a/src/librustc/ty/layout.rs +++ b/src/librustc/ty/layout.rs @@ -1101,7 +1101,7 @@ impl<'a, 'gcx, 'tcx> Layout { non_zero: false } } - ty::TyDynamic(_) => { + ty::TyDynamic(..) => { let mut unit = Struct::new(dl, &vec![], &[], StructKind::AlwaysSizedUnivariant, ty)?; unit.sized = false; |
