aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Breakpoint/BreakpointSite.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/Breakpoint/BreakpointSite.cpp')
-rw-r--r--lldb/source/Breakpoint/BreakpointSite.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Breakpoint/BreakpointSite.cpp b/lldb/source/Breakpoint/BreakpointSite.cpp
index f0469326657c..11ebc59c7e12 100644
--- a/lldb/source/Breakpoint/BreakpointSite.cpp
+++ b/lldb/source/Breakpoint/BreakpointSite.cpp
@@ -25,9 +25,9 @@ BreakpointSite::BreakpointSite(BreakpointSiteList *list,
m_type(eSoftware), // Process subclasses need to set this correctly using
// SetType()
m_saved_opcode(), m_trap_opcode(),
- m_enabled(false), // Need to create it disabled, so the first enable turns
- // it on.
- m_owners(), m_owners_mutex() {
+ m_enabled(false) // Need to create it disabled, so the first enable turns
+ // it on.
+{
m_owners.Add(owner);
}