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