diff options
author | Greg Clayton <gclayton@apple.com> | 2011-10-13 18:08:26 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-10-13 18:08:26 +0000 |
commit | 1b282f9619f68a60d4b8f4dd0c68b0a07e1a1293 (patch) | |
tree | 272a2761ade581bba6c9641267cd4bd6902b85c7 /lldb/scripts/Python/python-extensions.swig | |
parent | d5a9a3afafce0b1f2519250bd47701eab68edc46 (diff) | |
download | bcm5719-llvm-1b282f9619f68a60d4b8f4dd0c68b0a07e1a1293.tar.gz bcm5719-llvm-1b282f9619f68a60d4b8f4dd0c68b0a07e1a1293.zip |
Cleaned up the SBWatchpoint public API.
llvm-svn: 141876
Diffstat (limited to 'lldb/scripts/Python/python-extensions.swig')
-rw-r--r-- | lldb/scripts/Python/python-extensions.swig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/scripts/Python/python-extensions.swig b/lldb/scripts/Python/python-extensions.swig index 5c302ba6f86..52ec68e46f1 100644 --- a/lldb/scripts/Python/python-extensions.swig +++ b/lldb/scripts/Python/python-extensions.swig @@ -160,8 +160,8 @@ return PyString_FromString (description.GetData()); } } -%extend lldb::SBWatchpointLocation { - PyObject *lldb::SBWatchpointLocation::__repr__ (){ +%extend lldb::SBWatchpoint { + PyObject *lldb::SBWatchpoint::__repr__ (){ lldb::SBStream description; $self->GetDescription (description, lldb::eDescriptionLevelVerbose); return PyString_FromString (description.GetData()); |