aboutsummaryrefslogtreecommitdiff
path: root/source/Breakpoint
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2011-09-27 01:19:20 +0000
committerJohnny Chen <johnny.chen@apple.com>2011-09-27 01:19:20 +0000
commit092bd1575675778c6ebe901a7760af7427db617e (patch)
treef95f793e0ff8edd10083ba445336c6dbd3e6d123 /source/Breakpoint
parentd9b4425303fd48210ab104ca6573c869083a8480 (diff)
downloadlldb-092bd1575675778c6ebe901a7760af7427db617e.tar.gz
Export the watchpoint related API (SBWatchpointLocation class and added SBTarget methods)
to the Python interface. Implement yet another (threre're 3 now) iterator protocol for SBTarget: watchpoint_location_iter(), to iterate on the available watchpoint locations. And add a print representation for SBWatchpointLocation. Exercise some of these Python API with TestWatchpointLocationIter.py. git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@140595 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'source/Breakpoint')
-rw-r--r--source/Breakpoint/WatchpointLocation.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/Breakpoint/WatchpointLocation.cpp b/source/Breakpoint/WatchpointLocation.cpp
index 6b2785a22..01f618982 100644
--- a/source/Breakpoint/WatchpointLocation.cpp
+++ b/source/Breakpoint/WatchpointLocation.cpp
@@ -95,7 +95,6 @@ WatchpointLocation::ShouldStop (StoppointCallbackContext *context)
void
WatchpointLocation::GetDescription (Stream *s, lldb::DescriptionLevel level)
{
- s->Printf(" ");
DumpWithLevel(s, level);
return;
}