From 871d9f7f847f2b3b03fbe11146a27b698c56dcad Mon Sep 17 00:00:00 2001 From: Antonio Zugaldia Date: Wed, 17 Feb 2016 16:28:42 -0500 Subject: [PATCH] [android] #3891 - revert accidental long / uint64_t conversion --- include/mbgl/storage/offline.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/mbgl/storage/offline.hpp b/include/mbgl/storage/offline.hpp index f60ecf266a1..dd63cf968f9 100644 --- a/include/mbgl/storage/offline.hpp +++ b/include/mbgl/storage/offline.hpp @@ -90,19 +90,19 @@ class OfflineRegionStatus { * The number of resources that have been fully downloaded and are ready for * offline access. */ - long completedResourceCount = 0; + uint64_t completedResourceCount = 0; /** * The cumulative size, in bytes, of all resources that have been fully downloaded. */ - long completedResourceSize = 0; + uint64_t completedResourceSize = 0; /** * The number of resources that are known to be required for this region. See the * documentation for `requiredResourceCountIsIndeterminate` for an important caveat * about this number. */ - long requiredResourceCount = 0; + uint64_t requiredResourceCount = 0; /** * This property is true during early phases of an offline download, when the total