Skip to content

Commit 0fc03c2

Browse files
committed
fix: make FindMangledSymbol private
1 parent f2a0657 commit 0fc03c2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@ class SymbolFileNativePDB : public SymbolFileCommon {
141141
std::optional<PdbCompilandSymId> FindSymbolScope(PdbCompilandSymId id);
142142

143143
std::optional<llvm::StringRef> FindMangledFunctionName(PdbCompilandSymId id);
144-
std::optional<llvm::StringRef> FindMangledSymbol(SegmentOffset so);
145144

146145
void FindTypes(const lldb_private::TypeQuery &match,
147146
lldb_private::TypeResults &results) override;
@@ -272,6 +271,8 @@ class SymbolFileNativePDB : public SymbolFileCommon {
272271
void CacheUdtDeclarations();
273272
llvm::Expected<Declaration> ResolveUdtDeclaration(PdbTypeSymId type_id);
274273

274+
std::optional<llvm::StringRef> FindMangledSymbol(SegmentOffset so);
275+
275276
llvm::BumpPtrAllocator m_allocator;
276277

277278
lldb::addr_t m_obj_load_address = 0;

0 commit comments

Comments
 (0)