1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 18:35:20 +00:00

Merge pull request #336 from ace13/openmw-33

Fix compile error on Windows
This commit is contained in:
scrawl 2014-10-21 19:39:36 +02:00
commit ba26879fd4

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));
}