Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
[android] #3891 - revert accidental long / uint64_t conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
zugaldia committed Feb 17, 2016
1 parent fcea86e commit 871d9f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/mbgl/storage/offline.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 871d9f7

Please sign in to comment.