llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-lldb Author: Alex Langford (bulbazord) <details> <summary>Changes</summary> --- Full diff: https://github.com/llvm/llvm-project/pull/171901.diff 1 Files Affected: - (modified) lldb/include/lldb/Core/Module.h (-6) ``````````diff diff --git a/lldb/include/lldb/Core/Module.h b/lldb/include/lldb/Core/Module.h index 40ce23e3d2ffb..e2f09bdbbb4cb 100644 --- a/lldb/include/lldb/Core/Module.h +++ b/lldb/include/lldb/Core/Module.h @@ -935,18 +935,12 @@ class Module : public std::enable_shared_from_this<Module>, ConstString GetName() const { return m_name; } - void SetName(ConstString name) { m_name = name; } - ConstString GetLookupName() const { return m_lookup_name; } void SetLookupName(ConstString name) { m_lookup_name = name; } lldb::FunctionNameType GetNameTypeMask() const { return m_name_type_mask; } - void SetNameTypeMask(lldb::FunctionNameType mask) { - m_name_type_mask = mask; - } - lldb::LanguageType GetLanguageType() const { return m_language; } bool NameMatchesLookupInfo( `````````` </details> https://github.com/llvm/llvm-project/pull/171901 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
