diff options
| author | lcnr <rust@lcnr.de> | 2022-02-07 16:06:31 +0100 |
|---|---|---|
| committer | lcnr <rust@lcnr.de> | 2022-02-21 07:09:11 +0100 |
| commit | 1245131a118ee08a38cfd3a90952a0168d65cae2 (patch) | |
| tree | ec9618eef558e0a8f4c43e81fc3cb7bd07dbe928 /compiler/rustc_codegen_ssa/src/debuginfo | |
| parent | a9c1ab82f5f58a8459fc5f1f2d13021e80f23421 (diff) | |
| download | rust-1245131a118ee08a38cfd3a90952a0168d65cae2.tar.gz rust-1245131a118ee08a38cfd3a90952a0168d65cae2.zip | |
use `List<Ty<'tcx>>` for tuples
Diffstat (limited to 'compiler/rustc_codegen_ssa/src/debuginfo')
| -rw-r--r-- | compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs b/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs index b63851c195d..1561277b704 100644 --- a/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs +++ b/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs @@ -86,7 +86,7 @@ fn push_debuginfo_type_name<'tcx>( } for component_type in component_types { - push_debuginfo_type_name(tcx, component_type.expect_ty(), true, output, visited); + push_debuginfo_type_name(tcx, component_type, true, output, visited); push_arg_separator(cpp_like_debuginfo, output); } if !component_types.is_empty() { |
