[ios] Build fix.

This commit is contained in:
Ilya Grechuhin 2016-03-01 15:29:25 +03:00 committed by Sergey Yershov
parent 519b622fb7
commit 4e879b28da

View file

@ -124,7 +124,7 @@ using namespace storage;
{
TCountriesVec childrenId;
GetFramework().Storage().GetChildren(self.parentCountryId, childrenId);
if (childrenId.find(countryId) != childrenId.cend())
if (find(childrenId.cbegin(), childrenId.cend(), countryId) != childrenId.cend())
process();
}
}