[Regression] Fix horribly broken fallback loading

pull/545/head
Alexei Dobrohotov 5 years ago committed by GitHub
parent 2d20905d93
commit 0a97dd8e84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -39,10 +39,7 @@ namespace Fallback
std::string key(temp.substr(0, sep));
std::string value(temp.substr(sep + 1));
if (map->mMap.find(key) == map->mMap.end())
{
map->mMap.insert(std::make_pair(key, value));
}
map->mMap[key] = value;
}
}
}

Loading…
Cancel
Save