diff options
author | Adrian Prantl <aprantl@apple.com> | 2024-09-05 12:44:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-05 12:44:13 -0700 |
commit | b798f4bd50bbf0f5eb46804afad10629797c73aa (patch) | |
tree | 44c44e14ff6a7c9b9b7f5f81aa1c67f41f8502b0 /lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp | |
parent | 53d5ffea6be7216589599b6415c021f8bd13cd37 (diff) | |
download | llvm-b798f4bd50bbf0f5eb46804afad10629797c73aa.zip llvm-b798f4bd50bbf0f5eb46804afad10629797c73aa.tar.gz llvm-b798f4bd50bbf0f5eb46804afad10629797c73aa.tar.bz2 |
[lldb] Make deep copies of Status explicit (NFC) (#107170)
Diffstat (limited to 'lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp')
-rw-r--r-- | lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp b/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp index 0edde54..f2746c3 100644 --- a/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp +++ b/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp @@ -283,7 +283,7 @@ bool lldb_private::python::SWIGBridge::LLDBSwigPythonStopHookCallHandleStop( } python::PythonObject -lldb_private::python::SWIGBridge::ToSWIGWrapper(const Status &status) { +lldb_private::python::SWIGBridge::ToSWIGWrapper(Status status) { return python::PythonObject(); } |