From 2e23ce4cadeace53fd7de8c89d786f59108f378a Mon Sep 17 00:00:00 2001 From: Davide Italiano Date: Wed, 3 May 2017 18:02:46 +0000 Subject: [CodeView] Remove constructor initialization of a removed field. I should've staged this with my last commit. llvm-svn: 302059 --- llvm/lib/DebugInfo/CodeView/ModuleDebugLineFragment.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/lib/DebugInfo/CodeView/ModuleDebugLineFragment.cpp') diff --git a/llvm/lib/DebugInfo/CodeView/ModuleDebugLineFragment.cpp b/llvm/lib/DebugInfo/CodeView/ModuleDebugLineFragment.cpp index fdba1147f0b..e0ee934709b 100644 --- a/llvm/lib/DebugInfo/CodeView/ModuleDebugLineFragment.cpp +++ b/llvm/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); -- cgit v1.2.3