================ @@ -109,6 +109,13 @@ llvm::Error Status::ToError() const { Status::~Status() = default; +const Status &Status::operator=(Status &&other) { + m_code = other.m_code; + m_type = other.m_type; + m_string = other.m_string; ---------------- adrian-prantl wrote:
Sure, but this is going to be deleted in the next commit anyway. https://github.com/llvm/llvm-project/pull/107170 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits