diff options
| author | Joshua Nelson <jyn514@gmail.com> | 2020-10-26 21:02:48 -0400 |
|---|---|---|
| committer | Joshua Nelson <jyn514@gmail.com> | 2020-10-30 10:13:39 -0400 |
| commit | 57c6ed0c07aaea9c89a192e54b3274464ebe6fbf (patch) | |
| tree | 98a2c0310690cf0c09851cb5a12a99264bbbf522 /compiler/rustc_codegen_llvm/src/debuginfo | |
| parent | bfecb18771aa0249efe05dd7c35fa232f180bb70 (diff) | |
| download | rust-57c6ed0c07aaea9c89a192e54b3274464ebe6fbf.tar.gz rust-57c6ed0c07aaea9c89a192e54b3274464ebe6fbf.zip | |
Fix even more clippy warnings
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/debuginfo')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/debuginfo/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs b/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs index beaea49874e..6bb93857d71 100644 --- a/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs +++ b/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs @@ -435,7 +435,7 @@ impl DebugInfoMethods<'tcx> for CodegenCx<'ll, 'tcx> { name_to_append_suffix_to.push('<'); for (i, actual_type) in substs.types().enumerate() { if i != 0 { - name_to_append_suffix_to.push_str(","); + name_to_append_suffix_to.push(','); } let actual_type = |
