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:
authorYuri Gorshenin <y@maps.me>2017-04-19 13:51:25 +0300
committerVladimir Byko-Ianko <bykoianko@gmail.com>2017-04-19 15:08:21 +0300
commit6d3583c937b1878c8f796e659ef03d038cde17ab (patch)
tree79e92b416ac471e93ac7024c294419afba84822f /partners_api/uber_api.cpp
parentacd974ec22d3a49785412bfcc2b602277156b4c9 (diff)
[build] Various fixes to master build.
Diffstat (limited to 'partners_api/uber_api.cpp')
-rw-r--r--partners_api/uber_api.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/partners_api/uber_api.cpp b/partners_api/uber_api.cpp
index aea8d677c6..850667d5ed 100644
--- a/partners_api/uber_api.cpp
+++ b/partners_api/uber_api.cpp
@@ -59,7 +59,7 @@ void FillProducts(json_t const * time, json_t const * price, vector<uber::Produc
for (size_t i = 0; i < timeSize; ++i)
{
uber::Product product;
- json_int_t estimatedTime = 0;
+ int64_t estimatedTime = 0;
auto const item = json_array_get(time, i);
FromJSONObject(item, "display_name", product.m_name);
FromJSONObject(item, "estimate", estimatedTime);