[Lldb-commits] [lldb] [lldb][progress] Correctly check total for deterministic progress (PR #79912)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Mon Jan 29 22:15:44 PST 2024
================
@@ -23,7 +23,6 @@ Progress::Progress(std::string title, std::string details,
lldb_private::Debugger *debugger)
: m_title(title), m_details(details), m_id(++g_id), m_completed(0),
m_total(1) {
----------------
clayborg wrote:
```
m_total(kNonDeterministicTotal) {
```
https://github.com/llvm/llvm-project/pull/79912
More information about the lldb-commits
mailing list