debugging <.< and splitting commands to reduce size

This commit is contained in:
2022-12-20 00:21:15 +01:00
parent e961b8aec3
commit a0c87e5fc5
2 changed files with 27 additions and 10 deletions

View File

@ -71,7 +71,7 @@ struct List {
std::map<AgentType, uint64_t> last_seen_seq;
std::optional<size_t> findIdx(const ListID& list_id) const {
verify();
//verify(); // too expensive
for (size_t i = 0; i < list.size(); i++) {
if (list[i].id == list_id) {
return i;