diff options
Diffstat (limited to 'lldb/source/Core')
-rw-r--r-- | lldb/source/Core/Section.cpp | 4 | ||||
-rw-r--r-- | lldb/source/Core/UserID.cpp | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/lldb/source/Core/Section.cpp b/lldb/source/Core/Section.cpp index 0d924a34a65..203a6daf5cc 100644 --- a/lldb/source/Core/Section.cpp +++ b/lldb/source/Core/Section.cpp @@ -27,9 +27,9 @@ Section::Section (const ModuleSP &module_sp, ModuleChild (module_sp), UserID (sect_id), Flags (flags), + m_type (sect_type), m_parent_wp (), m_name (name), - m_type (sect_type), m_file_addr (file_addr), m_byte_size (byte_size), m_file_offset (file_offset), @@ -56,9 +56,9 @@ Section::Section (const lldb::SectionSP &parent_section_sp, ModuleChild (module_sp), UserID (sect_id), Flags (flags), + m_type (sect_type), m_parent_wp (), m_name (name), - m_type (sect_type), m_file_addr (file_addr), m_byte_size (byte_size), m_file_offset (file_offset), diff --git a/lldb/source/Core/UserID.cpp b/lldb/source/Core/UserID.cpp index 57ffce9cfff..f3d6e5b2218 100644 --- a/lldb/source/Core/UserID.cpp +++ b/lldb/source/Core/UserID.cpp @@ -15,10 +15,6 @@ using namespace lldb; using namespace lldb_private; -UserID::~UserID () -{ -} - Stream& lldb_private::operator << (Stream& strm, const UserID& uid) { |