commit | 95f41b8cc36bf55b95c4cc74daef459b659c115d | [log] [tgz] |
---|---|---|
author | Johnny Chen <johnny.chen@apple.com> | Tue Sep 13 01:13:20 2011 +0000 |
committer | Johnny Chen <johnny.chen@apple.com> | Tue Sep 13 01:13:20 2011 +0000 |
tree | 557363b0d63f124f00f37ed25d21878b6deb6a9a | |
parent | 08b8ed44ad8bcbea6eecfc6e4207879fcd6b84af [diff] [blame] |
Add trivial implementation for GetDescription(). git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@139568 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Breakpoint/WatchpointLocation.cpp b/source/Breakpoint/WatchpointLocation.cpp index 937fc8f..d2585b8 100644 --- a/source/Breakpoint/WatchpointLocation.cpp +++ b/source/Breakpoint/WatchpointLocation.cpp
@@ -74,7 +74,8 @@ void WatchpointLocation::GetDescription (Stream *s, lldb::DescriptionLevel level) { - // FIXME: Add implmentation of GetDescription(). + s->Printf(" "); + Dump(s); return; }