fdeazeve added inline comments.
================
Comment at: lldb/source/Utility/Broadcaster.cpp:382
+ auto iter = find_if(begin, end, listener_matches_and_shared_bits);
+ if (iter == m_event_map.end())
break;
----------------
Oh, this should be `== end`
================
Comment at: lldb/source/Utility/Broadcaster.cpp:436
+ iter = find_if(iter, end, events_predicate);
+ if (iter == m_event_map.end())
break;
----------------
this should be `== end`
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D150219/new/
https://reviews.llvm.org/D150219
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits