[Lldb-commits] [lldb] r139568 - /lldb/trunk/source/Breakpoint/WatchpointLocation.cpp
Johnny Chen
johnny.chen at apple.com
Mon Sep 12 18:13:20 PDT 2011
Author: johnny
Date: Mon Sep 12 20:13:20 2011
New Revision: 139568
URL: http://llvm.org/viewvc/llvm-project?rev=139568&view=rev
Log:
Add trivial implementation for GetDescription().
Modified:
lldb/trunk/source/Breakpoint/WatchpointLocation.cpp
Modified: lldb/trunk/source/Breakpoint/WatchpointLocation.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Breakpoint/WatchpointLocation.cpp?rev=139568&r1=139567&r2=139568&view=diff
==============================================================================
--- lldb/trunk/source/Breakpoint/WatchpointLocation.cpp (original)
+++ lldb/trunk/source/Breakpoint/WatchpointLocation.cpp Mon Sep 12 20:13:20 2011
@@ -74,7 +74,8 @@
void
WatchpointLocation::GetDescription (Stream *s, lldb::DescriptionLevel level)
{
- // FIXME: Add implmentation of GetDescription().
+ s->Printf(" ");
+ Dump(s);
return;
}
More information about the lldb-commits
mailing list