Fix warning

This commit is contained in:
Sergey Yershov 2015-09-29 11:58:21 +03:00
parent c91e5283b7
commit c864b4d450

View file

@ -97,7 +97,8 @@ void ParsedMapApi::AddKeyValue(string key, string const & value, vector<ApiPoint
return;
}
double lat, lon;
double lat = 0.0;
double lon = 0.0;
if (!strings::to_double(value.substr(0, firstComma), lat) ||
!strings::to_double(value.substr(firstComma + 1), lon))
{