Skip to content

Commit 9cac326

Browse files
committed
more formatting
1 parent 66c10fe commit 9cac326

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lldb/source/Target/Target.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3056,7 +3056,8 @@ bool Target::RunStopHooks(bool at_initial_stop) {
30563056

30573057
bool no_active_hooks =
30583058
llvm::none_of(m_stop_hooks, [at_initial_stop](auto &p) {
3059-
bool should_run_now = !at_initial_stop || p.second->GetRunAtInitialStop();
3059+
bool should_run_now =
3060+
!at_initial_stop || p.second->GetRunAtInitialStop();
30603061
return p.second->IsActive() && should_run_now;
30613062
});
30623063
if (no_active_hooks)

0 commit comments

Comments
 (0)