[CodeView] Remove constructor initialization of a removed field.

I should've staged this with my last commit.

llvm-svn: 302059
This commit is contained in:
Davide Italiano 2017-05-03 18:02:46 +00:00
parent ac0ec2240b
commit 2e23ce4cad
1 changed files with 2 additions and 2 deletions

View File

@ -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);