[Lldb-commits] [lldb] [lldb][progress] Add discrete boolean flag to progress reports (PR #69516)
Alex Langford via lldb-commits
lldb-commits at lists.llvm.org
Wed Oct 18 15:50:02 PDT 2023
================
@@ -16,7 +16,7 @@ using namespace lldb_private;
std::atomic<uint64_t> Progress::g_id(0);
-Progress::Progress(std::string title, uint64_t total,
+Progress::Progress(std::string title, bool is_discrete, uint64_t total,
----------------
bulbazord wrote:
You added this parameter but it doesn't look like it's used anywhere in `Progress`? Was this supposed to go to `m_is_discrete`?
https://github.com/llvm/llvm-project/pull/69516
More information about the lldb-commits
mailing list