[Lldb-commits] [PATCH] D133858: [lldb] Reset breakpoint hit count before new runs
Jonas Devlieghere via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Sep 14 08:42:38 PDT 2022
JDevlieghere added inline comments.
================
Comment at: lldb/source/Target/Process.cpp:2763-2766
+static void ResetHitCounts(Process &Proc) {
+ for (const auto &BP : Proc.GetTarget().GetBreakpointList().Breakpoints())
+ BP->ResetHitCount();
+}
----------------
Can this be a private member so we don't have to pass in `*this`?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D133858/new/
https://reviews.llvm.org/D133858
More information about the lldb-commits
mailing list