From b95636bcabfe7bb7c4e3b4b487eb5d5d3a864826 Mon Sep 17 00:00:00 2001 From: Davide Italiano Date: Wed, 3 May 2017 18:02:46 +0000 Subject: [PATCH] [CodeView] Remove constructor initialization of a removed field. I should've staged this with my last commit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@302059 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/DebugInfo/CodeView/ModuleDebugLineFragment.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/DebugInfo/CodeView/ModuleDebugLineFragment.cpp b/lib/DebugInfo/CodeView/ModuleDebugLineFragment.cpp index fdba1147f0b..e0ee934709b 100644 --- a/lib/DebugInfo/CodeView/ModuleDebugLineFragment.cpp +++ b/lib/DebugInfo/CodeView/ModuleDebugLineFragment.cpp @@ -69,8 +69,8 @@ bool ModuleDebugLineFragmentRef::hasColumnInfo() const { ModuleDebugLineFragment::ModuleDebugLineFragment( ModuleDebugFileChecksumFragment &Checksums, StringTable &Strings) - : ModuleDebugFragment(ModuleDebugFragmentKind::Lines), Checksums(Checksums), - Strings(Strings) {} + : ModuleDebugFragment(ModuleDebugFragmentKind::Lines), + Checksums(Checksums) {} void ModuleDebugLineFragment::createBlock(StringRef FileName) { uint32_t Offset = Checksums.mapChecksumOffset(FileName);