diff options
Diffstat (limited to 'lldb/source/Breakpoint/WatchpointList.cpp')
| -rw-r--r-- | lldb/source/Breakpoint/WatchpointList.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lldb/source/Breakpoint/WatchpointList.cpp b/lldb/source/Breakpoint/WatchpointList.cpp index a6f651e84955..100c1e51ac5a 100644 --- a/lldb/source/Breakpoint/WatchpointList.cpp +++ b/lldb/source/Breakpoint/WatchpointList.cpp @@ -12,10 +12,9 @@ using namespace lldb; using namespace lldb_private; -WatchpointList::WatchpointList() - : m_watchpoints(), m_mutex(), m_next_wp_id(0) {} +WatchpointList::WatchpointList() : m_watchpoints(), m_mutex() {} -WatchpointList::~WatchpointList() {} +WatchpointList::~WatchpointList() = default; // Add a watchpoint to the list. lldb::watch_id_t WatchpointList::Add(const WatchpointSP &wp_sp, bool notify) { |
