Change the signature of WatchpointLocation ctor so that the second param becomes
'size_t size', instead of 'lldb::tid_t tid'.  Pass size to the StoppointLocation
ctor as well.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@139131 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Breakpoint/WatchpointLocation.cpp b/source/Breakpoint/WatchpointLocation.cpp
index c4bd975..1b72d75 100644
--- a/source/Breakpoint/WatchpointLocation.cpp
+++ b/source/Breakpoint/WatchpointLocation.cpp
@@ -18,8 +18,8 @@
 using namespace lldb;
 using namespace lldb_private;
 
-WatchpointLocation::WatchpointLocation (lldb::addr_t addr, lldb::tid_t tid, bool hardware) :
-    StoppointLocation (GetNextID(), addr, tid, hardware),
+WatchpointLocation::WatchpointLocation (lldb::addr_t addr, size_t size, bool hardware) :
+    StoppointLocation (GetNextID(), addr, size, hardware),
     m_enabled(0),
     m_watch_read(0),
     m_watch_write(0),