summaryrefslogtreecommitdiffstats
path: root/lldb/source/Interpreter/ScriptInterpreterPython.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2012-11-01 21:35:16 +0000
committerGreg Clayton <gclayton@apple.com>2012-11-01 21:35:16 +0000
commitaa0c70e38c233226a4c629f0155edba12cd3fd41 (patch)
treedbdea4f0068908cdf16c5e1bdc8b70a2dc610dc6 /lldb/source/Interpreter/ScriptInterpreterPython.cpp
parent6df8945f04fa332c37bd11387346a0bebcf62653 (diff)
downloadbcm5719-llvm-aa0c70e38c233226a4c629f0155edba12cd3fd41.tar.gz
bcm5719-llvm-aa0c70e38c233226a4c629f0155edba12cd3fd41.zip
Get rid of hack by making the actual call public. This was causing the lldb-platform to not be able to link.
llvm-svn: 167253
Diffstat (limited to 'lldb/source/Interpreter/ScriptInterpreterPython.cpp')
-rw-r--r--lldb/source/Interpreter/ScriptInterpreterPython.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/ScriptInterpreterPython.cpp b/lldb/source/Interpreter/ScriptInterpreterPython.cpp
index ced46459878..87c2008e73a 100644
--- a/lldb/source/Interpreter/ScriptInterpreterPython.cpp
+++ b/lldb/source/Interpreter/ScriptInterpreterPython.cpp
@@ -2300,7 +2300,7 @@ ScriptInterpreterPython::GetChildAtIndex (const lldb::ScriptInterpreterObjectSP&
if (value_sb == NULL)
Py_XDECREF(child_ptr);
else
- ret_val = value_sb->get_sp();
+ ret_val = value_sb->GetSP();
}
else
{
OpenPOWER on IntegriCloud