Fix minor ASSERT with long numbers in xml.

This commit is contained in:
vng 2012-06-09 10:27:26 -07:00 committed by Alex Zolotarev
parent b1d9e2a0af
commit 8e317bafbf

View file

@ -198,8 +198,8 @@ namespace ftype
// get population rank
if (k == "population")
{
int n;
if (strings::to_int(v, n))
uint64_t n;
if (strings::to_uint64(v, n))
m_params.rank = static_cast<uint8_t>(log(double(n)) / log(1.1));
}
@ -221,8 +221,8 @@ namespace ftype
if (is_name_tag(k))
return false;
int dummy;
if (!m_isKey && strings::to_int(v, dummy))
uint64_t dummy;
if (!m_isKey && strings::to_uint64(v, dummy))
return (k == "admin_level");
return true;