Fix syntax error in ASSERT() statement

This commit is contained in:
David Capello 2018-03-19 21:06:05 -03:00
parent 0e0b83b478
commit f1d67e1a64

View File

@ -64,7 +64,7 @@ std::set<std::string> Strings::availableLanguages() const
}
}
ASSERT(result.find(kDefLanguage) != result.end);
ASSERT(result.find(kDefLanguage) != result.end());
return result;
}