Add trivial implementation for GetDescription().

llvm-svn: 139568
diff --git a/lldb/source/Breakpoint/WatchpointLocation.cpp b/lldb/source/Breakpoint/WatchpointLocation.cpp
index 937fc8f..d2585b8 100644
--- a/lldb/source/Breakpoint/WatchpointLocation.cpp
+++ b/lldb/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;
 }