[Lldb-commits] [lldb] [lldb] Change the implementation of Status to store an llvm::Error (NFC) (PR #106774)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Sat Aug 31 07:54:46 PDT 2024
================
@@ -97,7 +97,7 @@ class LLDB_API SBError {
friend class lldb_private::ScriptInterpreter;
friend class lldb_private::python::SWIGBridge;
- SBError(const lldb_private::Status &error);
+ SBError(lldb_private::Status &&error);
----------------
JDevlieghere wrote:
IIRC we have made changes to private functions that take lldb_private arguments. Given that they're private, I think it's a reasonable assumption to say that they're not part of the stable ABI.
https://github.com/llvm/llvm-project/pull/106774
More information about the lldb-commits
mailing list