diff --git a/lldb/source/Target/Platform.cpp b/lldb/source/Target/Platform.cpp index 088d6f1331178212d8378b608d13595fa0635a61..c914a59ecd8a6b3de7f15d2dd4d7d1665e972701 100644 --- a/lldb/source/Target/Platform.cpp +++ b/lldb/source/Target/Platform.cpp @@ -270,11 +270,12 @@ ArchSpec Platform::GetAugmentedArchSpec(Platform *platform, llvm::StringRef trip /// Default Constructor Platform::Platform(bool is_host) : m_is_host(is_host), m_os_version_set_while_connected(false), - m_system_arch_set_while_connected(false), m_max_uid_name_len(0), + m_system_arch_set_while_connected(false), m_container(false), + m_max_uid_name_len(0), m_max_gid_name_len(0), m_supports_rsync(false), m_rsync_opts(), m_rsync_prefix(), m_supports_ssh(false), m_ssh_opts(), m_ignores_remote_hostname(false), m_trap_handlers(), - m_container(false), m_calculated_trap_handlers(false), + m_calculated_trap_handlers(false), m_module_cache(std::make_unique()) { Log *log = GetLog(LLDBLog::Object); LLDB_LOGF(log, "%p Platform::Platform()", static_cast(this));