[Lldb-commits] [lldb] [lldb] Store the return SBValueList in the CommandReturnObject (PR #127566)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Tue Feb 18 11:22:04 PST 2025


================
@@ -22,8 +22,6 @@ class ValueObject;
 /// A collection of ValueObject values that.
 class ValueObjectList {
 public:
-  const ValueObjectList &operator=(const ValueObjectList &rhs);
----------------
JDevlieghere wrote:

Essentially a no-op, but necessary to silence:
```
warning: definition of implicit copy constructor for 'ValueObjectList' is deprecated because it has a user-provided copy assignment operator [-Wdeprecated-copy-with-user-provided-copy]
```

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


More information about the lldb-commits mailing list