mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-19 17:39:44 +00:00
Disable assertion for comparing iterators from different containers (Bug #605)
This commit is contained in:
parent
3961fb36d4
commit
f0e3463e9b
1 changed files with 2 additions and 1 deletions
|
@ -548,7 +548,8 @@ MWWorld::ContainerStoreIterator MWWorld::ContainerStoreIterator::operator++ (int
|
|||
|
||||
bool MWWorld::ContainerStoreIterator::isEqual (const ContainerStoreIterator& iter) const
|
||||
{
|
||||
assert (mContainer==iter.mContainer);
|
||||
if (mContainer!=iter.mContainer)
|
||||
return false;
|
||||
|
||||
if (mType!=iter.mType)
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue