================ @@ -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; ---------------- labath wrote:
`std::move(other.m_string)` ? 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