summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Loer <chris.loer@gmail.com>2017-11-01 10:29:31 -0700
committerChris Loer <chris.loer@mapbox.com>2017-11-01 10:49:07 -0700
commit35a79aacbd5a80609a0629da7a7079fcfefe7d93 (patch)
tree3b2fc94d7b631e0a07182282ada759371b9cfff7
parentaf55c994b42f207c93e8d2d3db82cd92d8856d9e (diff)
downloadqtlocation-mapboxgl-35a79aacbd5a80609a0629da7a7079fcfefe7d93.tar.gz
More compiler appeasement.
-rw-r--r--src/mbgl/text/cross_tile_symbol_index.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mbgl/text/cross_tile_symbol_index.cpp b/src/mbgl/text/cross_tile_symbol_index.cpp
index 0d19ba83cd..8047eaec0d 100644
--- a/src/mbgl/text/cross_tile_symbol_index.cpp
+++ b/src/mbgl/text/cross_tile_symbol_index.cpp
@@ -4,8 +4,8 @@
namespace mbgl {
-TileLayerIndex::TileLayerIndex(OverscaledTileID coord, std::shared_ptr<std::vector<SymbolInstance>> symbolInstances)
- : coord(coord), symbolInstances(symbolInstances) {
+TileLayerIndex::TileLayerIndex(OverscaledTileID coord_, std::shared_ptr<std::vector<SymbolInstance>> symbolInstances_)
+ : coord(coord_), symbolInstances(symbolInstances_) {
for (SymbolInstance& symbolInstance : *symbolInstances) {
if (indexedSymbolInstances.find(symbolInstance.key) == indexedSymbolInstances.end()) {
indexedSymbolInstances.emplace(symbolInstance.key, std::vector<IndexedSymbolInstance>());