diff options
author | David Spickett <david.spickett@linaro.org> | 2024-09-20 09:40:02 +0000 |
---|---|---|
committer | David Spickett <david.spickett@linaro.org> | 2024-09-20 09:41:07 +0000 |
commit | 76b827bb4d5b4cc4d3229c4c6de2529e8b156810 (patch) | |
tree | 6e7e50c9646ff403743a980bbcd5d3429784faf8 /lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp | |
parent | 2da70572a2564c4250534efd9399a751cde1e962 (diff) | |
download | llvm-76b827bb4d5b4cc4d3229c4c6de2529e8b156810.zip llvm-76b827bb4d5b4cc4d3229c4c6de2529e8b156810.tar.gz llvm-76b827bb4d5b4cc4d3229c4c6de2529e8b156810.tar.bz2 |
[lldb] Fix SWIG wrapper compilation error
Introduced by 1e131ddfa8f1d7b18c85c6e4079458be8b419421.
https://lab.llvm.org/buildbot/#/builders/59/builds/5272
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 ef9df05..a9e908e 100644 --- a/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp +++ b/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp @@ -274,7 +274,7 @@ void *lldb_private::python::SWIGBridge::LLDBSWIGPython_GetDynamicSetting( } python::PythonObject -lldb_private::python::SWIGBridge::ToSWIGWrapper(const Status &status) { +lldb_private::python::SWIGBridge::ToSWIGWrapper(Status status) { return python::PythonObject(); } |