avoided VS warning C4706

This commit is contained in:
joaquintides
2022-10-03 21:05:48 +02:00
parent 357eed44a1
commit 2e3a8a0fc0

View File

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