summaryrefslogtreecommitdiff
path: root/src/mbgl/util/tile_cover.hpp
diff options
context:
space:
mode:
authorAsheem Mamoowala <asheem.mamoowala@mapbox.com>2017-09-12 15:46:05 -0700
committerAsheem Mamoowala <asheem.mamoowala@mapbox.com>2017-09-20 09:05:45 -0700
commit2d84e2a1aea2581bc674620090ca8dbd971ee7af (patch)
treec6bbc3de0c3f109a1be4805a209c6d525c244713 /src/mbgl/util/tile_cover.hpp
parent2fcbd78062552a7fd4471bc0896b79f9888b91e8 (diff)
downloadqtlocation-mapboxgl-2d84e2a1aea2581bc674620090ca8dbd971ee7af.tar.gz
Fix platform dependent number type `unsigned long` -> `uint64_t`
Diffstat (limited to 'src/mbgl/util/tile_cover.hpp')
-rw-r--r--src/mbgl/util/tile_cover.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/util/tile_cover.hpp b/src/mbgl/util/tile_cover.hpp
index 405e6a48e6..3c7a4ee44a 100644
--- a/src/mbgl/util/tile_cover.hpp
+++ b/src/mbgl/util/tile_cover.hpp
@@ -19,7 +19,7 @@ std::vector<UnwrappedTileID> tileCover(const TransformState&, int32_t z);
std::vector<UnwrappedTileID> tileCover(const LatLngBounds&, int32_t z);
// Compute only the count of tiles needed for tileCover
-unsigned long tileCount(const LatLngBounds&, uint8_t z, uint16_t tileSize);
+uint64_t tileCount(const LatLngBounds&, uint8_t z, uint16_t tileSize);
} // namespace util
} // namespace mbgl