diff options
Diffstat (limited to 'lldb/source/Breakpoint/WatchpointList.cpp')
-rw-r--r-- | lldb/source/Breakpoint/WatchpointList.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Breakpoint/WatchpointList.cpp b/lldb/source/Breakpoint/WatchpointList.cpp index 6ec3bd09c14..6497780084d 100644 --- a/lldb/source/Breakpoint/WatchpointList.cpp +++ b/lldb/source/Breakpoint/WatchpointList.cpp @@ -203,9 +203,9 @@ bool WatchpointList::ShouldStop(StoppointCallbackContext *context, WatchpointSP wp_sp = FindByID(watch_id); if (wp_sp) { - // Let the Watchpoint decide if it should stop here (could not have - // reached it's target hit count yet, or it could have a callback - // that decided it shouldn't stop. + // Let the Watchpoint decide if it should stop here (could not have reached + // it's target hit count yet, or it could have a callback that decided it + // shouldn't stop. return wp_sp->ShouldStop(context); } // We should stop here since this Watchpoint isn't valid anymore or it |