mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 14:08:37 +00:00
Replace utils::popcnt32 with std::popcount
Cleanup includes.
This commit is contained in:
parent
032e7c0491
commit
f72af2973d
5 changed files with 2 additions and 22 deletions
|
|
@ -236,7 +236,7 @@ Type* PPUTranslator::ScaleType(Type* type, s32 pow2)
|
|||
|
||||
uint scaled = type->getScalarSizeInBits();
|
||||
|
||||
verify(HERE), utils::popcnt32(scaled) == 1;
|
||||
verify(HERE), std::popcount(scaled) == 1;
|
||||
|
||||
if (pow2 > 0)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue