Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArsentiy Milchakov <milcars@mapswithme.com>2017-06-26 11:16:53 +0300
committerYuri Gorshenin <mipt.vi002@gmail.com>2017-06-27 12:39:59 +0300
commit7ae9434a7a2044e1f8534956018926e7a9e84dc6 (patch)
tree6c5be196345ab3f3250643bf132e2d61df70cc42 /traffic
parentc99adbfb29a68904084bbb17865b63a653332057 (diff)
review fixes
Diffstat (limited to 'traffic')
-rw-r--r--traffic/traffic_info.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/traffic/traffic_info.cpp b/traffic/traffic_info.cpp
index 5a795b1c82..ccd068db7f 100644
--- a/traffic/traffic_info.cpp
+++ b/traffic/traffic_info.cpp
@@ -517,7 +517,7 @@ TrafficInfo::ServerDataStatus TrafficInfo::ProcessFailure(platform::HttpClient c
case 404: /* Not Found */
{
int64_t version = 0;
- ASSERT(strings::to_int64(request.ServerResponse().c_str(), version), ());
+ VERIFY(strings::to_int64(request.ServerResponse().c_str(), version), ());
if (version > mwmVersion && version <= m_currentDataVersion)
m_availability = Availability::ExpiredData;