We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66c10fe commit 9cac326Copy full SHA for 9cac326
lldb/source/Target/Target.cpp
@@ -3056,7 +3056,8 @@ bool Target::RunStopHooks(bool at_initial_stop) {
3056
3057
bool no_active_hooks =
3058
llvm::none_of(m_stop_hooks, [at_initial_stop](auto &p) {
3059
- bool should_run_now = !at_initial_stop || p.second->GetRunAtInitialStop();
+ bool should_run_now =
3060
+ !at_initial_stop || p.second->GetRunAtInitialStop();
3061
return p.second->IsActive() && should_run_now;
3062
});
3063
if (no_active_hooks)
0 commit comments