diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-12-28 21:23:35 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2017-12-28 21:23:35 +0000 |
commit | 160ee69dd7ae18978f4068116777639ea98dc951 (patch) | |
tree | caca83f2f9a1fc3f1e7cefb74a59068c11eb62ef /source/Plugins | |
parent | 23629167fefb8117a4d2cc9213c8a29d5b4a1197 (diff) |
Notes
Diffstat (limited to 'source/Plugins')
-rw-r--r-- | source/Plugins/SymbolFile/PDB/SymbolFilePDB.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h b/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h index d78358c714ac9..eef96be8d1fef 100644 --- a/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h +++ b/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h @@ -140,6 +140,10 @@ public: size_t FindTypes(const std::vector<lldb_private::CompilerContext> &context, bool append, lldb_private::TypeMap &types) override; + void FindTypesByRegex(const lldb_private::RegularExpression ®ex, + uint32_t max_matches, + lldb_private::TypeMap &types); + lldb_private::TypeList *GetTypeList() override; size_t GetTypes(lldb_private::SymbolContextScope *sc_scope, @@ -172,10 +176,6 @@ private: const llvm::pdb::PDBSymbolCompiland &cu, llvm::DenseMap<uint32_t, uint32_t> &index_map) const; - void FindTypesByRegex(const lldb_private::RegularExpression ®ex, - uint32_t max_matches, - lldb_private::TypeMap &types); - void FindTypesByName(const std::string &name, uint32_t max_matches, lldb_private::TypeMap &types); |