Skip to content

Commit 3b23704

Browse files
committed
[lldb][PDB] Fix test build after plugin namespace change
This was failing to build on Windows after 1673a1b.
1 parent a72d88f commit 3b23704

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/unittests/SymbolFile/PDB/SymbolFilePDBTests.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class SymbolFilePDBTests : public testing::Test {
5353
FileSystem::Initialize();
5454
HostInfo::Initialize();
5555
ObjectFilePECOFF::Initialize();
56-
SymbolFileDWARF::Initialize();
56+
plugin::dwarf::SymbolFileDWARF::Initialize();
5757
TypeSystemClang::Initialize();
5858
SymbolFilePDB::Initialize();
5959

@@ -64,7 +64,7 @@ class SymbolFilePDBTests : public testing::Test {
6464
void TearDown() override {
6565
SymbolFilePDB::Terminate();
6666
TypeSystemClang::Initialize();
67-
SymbolFileDWARF::Terminate();
67+
plugin::dwarf::SymbolFileDWARF::Terminate();
6868
ObjectFilePECOFF::Terminate();
6969
HostInfo::Terminate();
7070
FileSystem::Terminate();

0 commit comments

Comments
 (0)