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;
 }