This commit is contained in:
Ari Lazier 2015-10-12 17:18:49 -07:00
parent ad677b7873
commit b27b7941f0
1 changed files with 2 additions and 2 deletions

View File

@ -444,8 +444,8 @@ void RealmCache::invalidate_all()
{
std::lock_guard<std::mutex> lock(m_mutex);
for (auto &path_realms:m_cache) {
for (auto &realm_iter:path_realms.second) {
for (auto &path_realms : m_cache) {
for (auto &realm_iter : path_realms.second) {
if (auto realm = realm_iter.second.lock()) {
realm->invalidate();
}