1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-03-03 02:19:41 +00:00

Fix compile error on Windows

This commit is contained in:
Alexander "Ace" Olofsson 2014-10-21 19:35:17 +02:00
parent 9bb51fd9c2
commit b5a57920b6

View file

@ -1187,7 +1187,7 @@ namespace MWWorld
mShared.clear();
mShared.reserve(mStatic.size());
typename std::map<std::string, ESM::Dialogue>::iterator it = mStatic.begin();
std::map<std::string, ESM::Dialogue>::iterator it = mStatic.begin();
for (; it != mStatic.end(); ++it) {
mShared.push_back(&(it->second));
}