Add a data type WatchpointLocationList to the repository. A Target contains an instance of watchpoint location list.
Also add a typefed for WatchpointLocationSP to lldb-forward-rtti.h.
git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@139166 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Target/Target.cpp b/source/Target/Target.cpp
index 812d906..00192a5 100644
--- a/source/Target/Target.cpp
+++ b/source/Target/Target.cpp
@@ -53,6 +53,7 @@
m_section_load_list (),
m_breakpoint_list (false),
m_internal_breakpoint_list (true),
+ m_watchpoint_location_list (),
m_process_sp (),
m_search_filter_sp (),
m_image_search_paths (ImageSearchPathsChanged, this),