forked from organicmaps/organicmaps
[generator] CHECK->LOG for GetPopulation().
This commit is contained in:
parent
17e6956d9f
commit
7c4eeb0b86
1 changed files with 3 additions and 1 deletions
|
@ -58,7 +58,9 @@ uint64_t GetPopulation(std::string const & populationStr)
|
|||
return 0;
|
||||
|
||||
uint64_t result = 0;
|
||||
CHECK(strings::to_uint64(number, result), (number));
|
||||
if (!strings::to_uint64(number, result))
|
||||
LOG(LWARNING, ("Failed to get population from", number, populationStr));
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue