Skip to content

Commit 1becf7d

Browse files
committed
fixup! rebase on latest ModuleList changes
1 parent 1b8d66b commit 1becf7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/source/Core/ModuleList.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -589,10 +589,10 @@ ModuleSP ModuleList::FindModule(lldb::user_id_t uid) const {
589589
ForEach([&](const ModuleSP &m) {
590590
if (m->GetID() == uid) {
591591
module_sp = m;
592-
return true;
592+
return IterationAction::Stop;
593593
}
594594

595-
return false;
595+
return IterationAction::Continue;
596596
});
597597

598598
return module_sp;

0 commit comments

Comments
 (0)