diff options
Diffstat (limited to 'lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.h')
-rw-r--r-- | lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.h b/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.h index b82620148ca..ca425c17c45 100644 --- a/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.h +++ b/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.h @@ -30,10 +30,13 @@ class CompilerType; namespace llvm { +namespace pdb +{ class PDBSymbol; class PDBSymbolData; class PDBSymbolTypeBuiltin; } +} class PDBASTParser { @@ -42,11 +45,11 @@ public: ~PDBASTParser(); lldb::TypeSP - CreateLLDBTypeFromPDBType(const llvm::PDBSymbol &type); + CreateLLDBTypeFromPDBType(const llvm::pdb::PDBSymbol &type); private: bool - AddEnumValue(lldb_private::CompilerType enum_type, const llvm::PDBSymbolData &data) const; + AddEnumValue(lldb_private::CompilerType enum_type, const llvm::pdb::PDBSymbolData &data) const; lldb_private::ClangASTContext &m_ast; lldb_private::ClangASTImporter m_ast_importer; |