0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-01-13 08:23:56 +01:00

ircd:Ⓜ️:dbs: Relax assertion.

This commit is contained in:
Jason Volk 2020-09-30 15:33:27 -07:00
parent 8e3bf1f458
commit 12f28c8f9f

View file

@ -422,7 +422,6 @@ ircd::m::dbs::find_event_idx(const vector_view<event::idx> &idx,
for(size_t i(0); i < num; ++i)
{
idx[i] = m::index(std::nothrow, event_id[i]);
assert(idx[i] < vm::sequence::retired);
ret += idx[i] != 0;
}