mirror of
https://github.com/boostorg/unordered.git
synced 2025-11-13 13:59:57 +01:00
avoided VS warning C4706
This commit is contained in:
@@ -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()));
|
while((mask=reinterpret_cast<Group*>(pc)->match_occupied())!=0);
|
||||||
}
|
}
|
||||||
|
|
||||||
auto n=unchecked_countr_zero(mask);
|
auto n=unchecked_countr_zero(mask);
|
||||||
|
|||||||
Reference in New Issue
Block a user