diff options
Diffstat (limited to 'lldb/source/Core/Module.cpp')
-rw-r--r-- | lldb/source/Core/Module.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lldb/source/Core/Module.cpp b/lldb/source/Core/Module.cpp index 735dde4a5da..708ff7172ba 100644 --- a/lldb/source/Core/Module.cpp +++ b/lldb/source/Core/Module.cpp @@ -26,6 +26,7 @@ Module::Module(const FileSpec& file_spec, const ArchSpec& arch, const ConstStrin m_arch (arch), m_uuid (), m_file (file_spec), + m_platform_file(), m_object_name (), m_objfile_ap (), m_symfile_ap (), @@ -448,12 +449,6 @@ Module::GetSymbolVendor (bool can_create) return m_symfile_ap.get(); } -const FileSpec & -Module::GetFileSpec () const -{ - return m_file; -} - void Module::SetFileSpecAndObjectName (const FileSpec &file, const ConstString &object_name) { |