Change it++ to ++it

This commit is contained in:
Ryan Huffman 2017-09-01 13:02:25 -07:00 committed by GitHub
parent c67fcc1384
commit eb2e87a798

View file

@ -1056,7 +1056,7 @@ bool AssetServer::renameMapping(AssetPath oldPath, AssetPath newPath) {
_fileMappings[newKey] = it->second;
}
it++;
++it;
}
if (writeMappingsToFile()) {