mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Merge pull request #12473 from Dentomologist/bitset64_fix_iterator_incrementation
BitSet64: Fix iterator incrementation
This commit is contained in:
@ -73,7 +73,7 @@ public:
|
||||
else
|
||||
{
|
||||
int bit = std::countr_zero(m_val);
|
||||
m_val &= ~(1 << bit);
|
||||
m_val &= ~(IntTy{1} << bit);
|
||||
m_bit = bit;
|
||||
}
|
||||
return *this;
|
||||
|
Reference in New Issue
Block a user