diff options
Diffstat (limited to 'contrib/llvm/tools/lldb/source/Breakpoint/WatchpointList.cpp')
-rw-r--r-- | contrib/llvm/tools/lldb/source/Breakpoint/WatchpointList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/llvm/tools/lldb/source/Breakpoint/WatchpointList.cpp b/contrib/llvm/tools/lldb/source/Breakpoint/WatchpointList.cpp index 6d62dff..472bae0 100644 --- a/contrib/llvm/tools/lldb/source/Breakpoint/WatchpointList.cpp +++ b/contrib/llvm/tools/lldb/source/Breakpoint/WatchpointList.cpp @@ -55,7 +55,7 @@ void WatchpointList::DumpWithLevel (Stream *s, lldb::DescriptionLevel description_level) const { Mutex::Locker locker (m_mutex); - s->Printf("%p: ", this); + s->Printf("%p: ", static_cast<const void*>(this)); //s->Indent(); s->Printf("WatchpointList with %" PRIu64 " Watchpoints:\n", (uint64_t)m_watchpoints.size()); |