From 2d84e2a1aea2581bc674620090ca8dbd971ee7af Mon Sep 17 00:00:00 2001 From: Asheem Mamoowala Date: Tue, 12 Sep 2017 15:46:05 -0700 Subject: Fix platform dependent number type `unsigned long` -> `uint64_t` --- src/mbgl/util/tile_cover.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mbgl/util/tile_cover.hpp') 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 tileCover(const TransformState&, int32_t z); std::vector 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 -- cgit v1.2.1