mirror of
https://github.com/vcmi/vcmi.git
synced 2025-04-04 22:14:25 +02:00
Fix usage of std::bitset
This commit is contained in:
parent
9754e72063
commit
3bbfee0e1c
@ -32,9 +32,7 @@ void BattleHexArray::insert(const BattleHexArray & other) noexcept
|
|||||||
|
|
||||||
void BattleHexArray::clear() noexcept
|
void BattleHexArray::clear() noexcept
|
||||||
{
|
{
|
||||||
for(const auto & hex : internalStorage)
|
presenceFlags = {};
|
||||||
presenceFlags[hex.toInt()] = false;
|
|
||||||
|
|
||||||
internalStorage.clear();
|
internalStorage.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -126,7 +126,7 @@ public:
|
|||||||
// reinit presence flags
|
// reinit presence flags
|
||||||
presenceFlags = {};
|
presenceFlags = {};
|
||||||
for(const auto & hex : internalStorage)
|
for(const auto & hex : internalStorage)
|
||||||
presenceFlags.set(hex.toInt()) = true;
|
presenceFlags.set(hex.toInt());
|
||||||
}
|
}
|
||||||
|
|
||||||
void shuffle(vstd::RNG & rand)
|
void shuffle(vstd::RNG & rand)
|
||||||
@ -239,7 +239,7 @@ public:
|
|||||||
if(!s.saving)
|
if(!s.saving)
|
||||||
{
|
{
|
||||||
for(const auto & hex : internalStorage)
|
for(const auto & hex : internalStorage)
|
||||||
presenceFlags.set(hex.toInt()) = true;
|
presenceFlags.set(hex.toInt());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user