================
@@ -39,8 +39,8 @@ using namespace lldb_private;
 
 Status::Status() : m_string() {}
 
-Status::Status(ValueType err, ErrorType type)
-    : m_code(err), m_type(type), m_string() {}
+Status::Status(ValueType err, ErrorType type, llvm::StringRef msg)
----------------
Michael137 wrote:

```suggestion
Status::Status(ValueType err, ErrorType type, std::string msg)
```
If you're going to sink it into `m_string` anyway?

https://github.com/llvm/llvm-project/pull/106163
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to