summaryrefslogtreecommitdiff
path: root/src/map/raster_tile_data.cpp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2014-10-23 02:46:15 -0700
committerKonstantin Käfer <mail@kkaefer.com>2014-10-23 02:46:15 -0700
commit10cb83579feb53e7524ec899c0bff19161877669 (patch)
treea8bbac3634560412f03cd2404348c06ee7b47bfc /src/map/raster_tile_data.cpp
parent40a933ddce390b7926c25bb00a95f34fd76453ae (diff)
downloadqtlocation-mapboxgl-10cb83579feb53e7524ec899c0bff19161877669.tar.gz
gcc fixes
Diffstat (limited to 'src/map/raster_tile_data.cpp')
-rw-r--r--src/map/raster_tile_data.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/raster_tile_data.cpp b/src/map/raster_tile_data.cpp
index e7725b7abd..99ca327fe7 100644
--- a/src/map/raster_tile_data.cpp
+++ b/src/map/raster_tile_data.cpp
@@ -5,8 +5,8 @@
using namespace mbgl;
-RasterTileData::RasterTileData(Tile::ID id, Map &map, const util::ptr<SourceInfo> &source)
- : TileData(id, map, source),
+RasterTileData::RasterTileData(Tile::ID id_, Map &map_, const util::ptr<SourceInfo> &source_)
+ : TileData(id_, map_, source_),
bucket(map.getTexturepool(), properties) {
}