diff options
Diffstat (limited to 'lldb/source/Breakpoint/BreakpointLocation.cpp')
-rw-r--r-- | lldb/source/Breakpoint/BreakpointLocation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Breakpoint/BreakpointLocation.cpp b/lldb/source/Breakpoint/BreakpointLocation.cpp index 6693c469cc6..5d7206e2846 100644 --- a/lldb/source/Breakpoint/BreakpointLocation.cpp +++ b/lldb/source/Breakpoint/BreakpointLocation.cpp @@ -212,12 +212,12 @@ BreakpointLocation::ShouldStop (StoppointCallbackContext *context) bool should_stop = true; LogSP log = lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_BREAKPOINTS); - m_hit_count++; + IncrementHitCount(); if (!IsEnabled()) return false; - if (m_hit_count <= GetIgnoreCount()) + if (GetHitCount() <= GetIgnoreCount()) return false; // We only run synchronous callbacks in ShouldStop: |