@@ -265,8 +265,7 @@ ObjectFile::ObjectFile(const lldb::ModuleSP &module_sp,
265
265
: ModuleChild(module_sp),
266
266
m_file(), // This file could be different from the original module's file
267
267
m_type(eTypeInvalid), m_strata(eStrataInvalid),
268
- m_file_offset(file_offset), m_length(length), m_data(),
269
- m_process_wp(),
268
+ m_file_offset(file_offset), m_length(length), m_data(), m_process_wp(),
270
269
m_memory_addr(LLDB_INVALID_ADDRESS), m_sections_up(), m_symtab_up(),
271
270
m_synthetic_symbol_idx(0 ) {
272
271
if (file_spec_ptr)
@@ -288,9 +287,8 @@ ObjectFile::ObjectFile(const lldb::ModuleSP &module_sp,
288
287
DataBufferSP &header_data_sp)
289
288
: ModuleChild(module_sp), m_file(), m_type(eTypeInvalid),
290
289
m_strata(eStrataInvalid), m_file_offset(0 ), m_length(0 ), m_data(),
291
- m_process_wp(process_sp),
292
- m_memory_addr(header_addr), m_sections_up(), m_symtab_up(),
293
- m_synthetic_symbol_idx(0 ) {
290
+ m_process_wp(process_sp), m_memory_addr(header_addr), m_sections_up(),
291
+ m_symtab_up(), m_synthetic_symbol_idx(0 ) {
294
292
if (header_data_sp)
295
293
m_data.SetData (header_data_sp, 0 , header_data_sp->GetByteSize ());
296
294
Log *log (lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_OBJECT));
0 commit comments