Linux build.

This commit is contained in:
mfeemster
2015-11-22 17:03:11 -08:00
parent 330074cfb2
commit 5e82167155
10 changed files with 34 additions and 27 deletions

View File

@ -1366,7 +1366,7 @@ private:
/// <returns>The corrected name if one was found, else the passed in name.</returns>
static string GetCorrectedParamName(const unordered_map<string, string>& names, const char* name)
{
auto& newName = names.find(ToLower(name));
const auto& newName = names.find(ToLower(name));
if (newName != names.end())
return newName->second;