[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
================
@@ -59,6 +63,9 @@ class LLDB_API SBProgress {
lldb_private::Progress &ref() const;
private:
+ SBProgress(const SBProgress &rhs) = delete;
----------------
Jlalond wrote:
Oh! I didn't originally do this because I thought we weren't adding deletes in the header.
https://github.com/llvm/llvm-project/pull/124843
More information about the lldb-commits
mailing list