Review fixes.

This commit is contained in:
Lev Dragunov 2016-01-27 16:12:13 +03:00 committed by Sergey Yershov
parent 2b6d14476d
commit a5cb15e654

View file

@ -27,14 +27,8 @@ public:
string key(tag.key), value(tag.value);
if (key == "population")
{
try
{
strings::to_uint64(value, population);
}
catch (std::invalid_argument const &)
{
if (!strings::to_uint64(value, population))
continue;
}
}
else if (key == "capital" && value == "yes")
{