forked from OSchip/llvm-project
[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:
parent
ac0ec2240b
commit
2e23ce4cad
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue