[Lldb-commits] [lldb] [LLDB] Add external progress bit category (PR #120171)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Tue Dec 17 08:28:31 PST 2024


================
@@ -149,6 +156,9 @@ class Progress {
 
   /// The "completed" value of the last reported event.
   std::optional<uint64_t> m_prev_completed;
+
+  /// The origin of this progress event.
+  ProgressOrigin m_origin;
----------------
JDevlieghere wrote:

Pavel const'ified the things that cannot change, so we should mark this as `const` and move it up (before or after ProgressData) so these const members are grouped together. 

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


More information about the lldb-commits mailing list