diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2011-09-13 01:13:20 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2011-09-13 01:13:20 +0000 |
| commit | 02ae341043ef382714cfc4639312b7dabb4155b8 (patch) | |
| tree | ac2e6ac47071f42f6346daeacbc082d13bef76d8 | |
| parent | 354b9a65f95184d7422b1d39a5b1ba5770c8a3e9 (diff) | |
| download | bcm5719-llvm-02ae341043ef382714cfc4639312b7dabb4155b8.tar.gz bcm5719-llvm-02ae341043ef382714cfc4639312b7dabb4155b8.zip | |
Add trivial implementation for GetDescription().
llvm-svn: 139568
| -rw-r--r-- | lldb/source/Breakpoint/WatchpointLocation.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Breakpoint/WatchpointLocation.cpp b/lldb/source/Breakpoint/WatchpointLocation.cpp index 937fc8fca00..d2585b83481 100644 --- a/lldb/source/Breakpoint/WatchpointLocation.cpp +++ b/lldb/source/Breakpoint/WatchpointLocation.cpp @@ -74,7 +74,8 @@ WatchpointLocation::BreakpointWasHit (StoppointCallbackContext *context) void WatchpointLocation::GetDescription (Stream *s, lldb::DescriptionLevel level) { - // FIXME: Add implmentation of GetDescription(). + s->Printf(" "); + Dump(s); return; } |

