================ @@ -22,38 +23,47 @@ std::atomic<uint64_t> Progress::g_id(0); Progress::Progress(std::string title, std::string details, std::optional<uint64_t> total, lldb_private::Debugger *debugger) - : m_title(title), m_details(details), m_id(++g_id), m_completed(0), - m_total(Progress::kNonDeterministicTotal) { + : m_progress_data{title, + details, + ++g_id, + /*m_progress_data.completed*/ 0, ---------------- JDevlieghere wrote:
Nit: llvm uses this style: ```/*m_progress_data.completed=*/0,``` https://github.com/llvm/llvm-project/pull/83069 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits