From a2e3af5d581547d3ea53e5383d6f7f1cab45120a Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Fri, 28 Jun 2024 13:25:11 +0200 Subject: Revert "[lldb/Interpreter] Discard ScriptedThreadPlan::GetStopDescription return value (#96985)" This reverts commit 1130e923e2d7fe046101bf639bc5ebcde194c005. Very likely causes build problems on Windows and with LLVM_NO_DEAD_STRIP=ON, see https://github.com/llvm/llvm-project/pull/96985#pullrequestreview-2147599208 --- .../ScriptInterpreter/Python/Interfaces/ScriptedPythonInterface.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedPythonInterface.h') diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedPythonInterface.h b/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedPythonInterface.h index e1a3156d10af..062bf1fcff4a 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedPythonInterface.h +++ b/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedPythonInterface.h @@ -341,8 +341,8 @@ protected: return python::SWIGBridge::ToSWIGWrapper(arg); } - python::PythonObject Transform(lldb::StreamSP arg) { - return python::SWIGBridge::ToSWIGWrapper(arg.get()); + python::PythonObject Transform(Stream *arg) { + return python::SWIGBridge::ToSWIGWrapper(arg); } python::PythonObject Transform(lldb::DataExtractorSP arg) { @@ -447,8 +447,7 @@ Event *ScriptedPythonInterface::ExtractValueFromPythonObject( python::PythonObject &p, Status &error); template <> -lldb::StreamSP -ScriptedPythonInterface::ExtractValueFromPythonObject( +Stream *ScriptedPythonInterface::ExtractValueFromPythonObject( python::PythonObject &p, Status &error); template <> -- cgit v1.2.3