[Lldb-commits] [lldb] [lldb][Progress] Separate title and details (PR #77547)

Chelsea Cassanova via lldb-commits lldb-commits at lists.llvm.org
Wed Jan 10 08:10:21 PST 2024


================
@@ -69,7 +69,8 @@ class Progress {
   ///
   /// @param [in] debugger An optional debugger pointer to specify that this
   /// progress is to be reported only to specific debuggers.
-  Progress(std::string title, uint64_t total = UINT64_MAX,
+  Progress(std::string title, std::string details = {},
+           uint64_t total = UINT64_MAX,
----------------
chelcassanova wrote:

For sure, this was actually a part of the original patch I made trying to introduce the aggregate flag.

https://github.com/llvm/llvm-project/pull/77547


More information about the lldb-commits mailing list