[Lldb-commits] [lldb] [lldb] Make SBProgress move-only (PR #124843)
Jacob Lalonde via lldb-commits
lldb-commits at lists.llvm.org
Tue Jan 28 13:41:49 PST 2025
================
@@ -51,6 +51,10 @@ class LLDB_API SBProgress {
SBProgress(const char *title, const char *details, uint64_t total_units,
SBDebugger &debugger);
+#ifndef SWIG
----------------
Jlalond wrote:
Why the move operator for only Swig? Wouldn't this be useful if say DAP wanted to grab it's own progress object and then potentially move it?
https://github.com/llvm/llvm-project/pull/124843
More information about the lldb-commits
mailing list