diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2022-07-03 14:10:23 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2022-07-03 14:10:23 +0000 |
| commit | 145449b1e420787bb99721a429341fa6be3adfb6 (patch) | |
| tree | 1d56ae694a6de602e348dd80165cf881a36600ed /lldb/source/Breakpoint/WatchpointOptions.cpp | |
| parent | ecbca9f5fb7d7613d2b94982c4825eb0d33d6842 (diff) | |
Diffstat (limited to 'lldb/source/Breakpoint/WatchpointOptions.cpp')
| -rw-r--r-- | lldb/source/Breakpoint/WatchpointOptions.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lldb/source/Breakpoint/WatchpointOptions.cpp b/lldb/source/Breakpoint/WatchpointOptions.cpp index a578e8744efb..c27cd62e0220 100644 --- a/lldb/source/Breakpoint/WatchpointOptions.cpp +++ b/lldb/source/Breakpoint/WatchpointOptions.cpp @@ -27,14 +27,12 @@ bool WatchpointOptions::NullCallback(void *baton, // WatchpointOptions constructor WatchpointOptions::WatchpointOptions() - : m_callback(WatchpointOptions::NullCallback), m_callback_baton_sp(), - m_thread_spec_up() {} + : m_callback(WatchpointOptions::NullCallback) {} // WatchpointOptions copy constructor WatchpointOptions::WatchpointOptions(const WatchpointOptions &rhs) : m_callback(rhs.m_callback), m_callback_baton_sp(rhs.m_callback_baton_sp), - m_callback_is_synchronous(rhs.m_callback_is_synchronous), - m_thread_spec_up() { + m_callback_is_synchronous(rhs.m_callback_is_synchronous) { if (rhs.m_thread_spec_up != nullptr) m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); } |
