[Lldb-commits] [lldb] [lldb][progress] Add discrete boolean flag to progress reports (PR #69516)
Med Ismail Bennani via lldb-commits
lldb-commits at lists.llvm.org
Wed Oct 18 14:06:00 PDT 2023
================
@@ -1426,7 +1427,8 @@ void Debugger::ReportProgress(uint64_t progress_id, std::string title,
if (debugger_sp)
PrivateReportProgress(*debugger_sp, progress_id, std::move(title),
std::move(details), completed, total,
- /*is_debugger_specific*/ true);
+ /*is_debugger_specific*/ true,
+ /*is_discrete*/ is_discrete);
----------------
medismailben wrote:
nit: no need for the comment here, since the argument is not a boolean literal
https://github.com/llvm/llvm-project/pull/69516
More information about the lldb-commits
mailing list