Fix small typo in increment() function to silence VS warnings

This commit is contained in:
Christian Mazakas
2022-10-03 14:46:19 -07:00
parent bf6e381ff2
commit b0c0384401

View File

@ -643,7 +643,7 @@ private:
pc+=sizeof(Group); pc+=sizeof(Group);
p+=Group::N; p+=Group::N;
} }
while((mask=reinterpret_cast<Group*>(pc)->match_occupied())!=0); while((mask=reinterpret_cast<Group*>(pc)->match_occupied())==0);
} }
auto n=unchecked_countr_zero(mask); auto n=unchecked_countr_zero(mask);