CResourceIterator: Use prefix form for iterators

Same behavior, minus any created temporaries.
This commit is contained in:
Lioncash 2020-06-09 05:10:07 -04:00
parent e2209106fb
commit 65cc3a0d89
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ public:
if (mIter != mpkStore->mResourceEntries.end())
{
mpCurEntry = mIter->second;
mIter++;
++mIter;
}
else mpCurEntry = nullptr;
}