CResourceIterator: Use prefix form for iterators
Same behavior, minus any created temporaries.
This commit is contained in:
parent
e2209106fb
commit
65cc3a0d89
|
@ -27,7 +27,7 @@ public:
|
||||||
if (mIter != mpkStore->mResourceEntries.end())
|
if (mIter != mpkStore->mResourceEntries.end())
|
||||||
{
|
{
|
||||||
mpCurEntry = mIter->second;
|
mpCurEntry = mIter->second;
|
||||||
mIter++;
|
++mIter;
|
||||||
}
|
}
|
||||||
else mpCurEntry = nullptr;
|
else mpCurEntry = nullptr;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue