summaryrefslogtreecommitdiff
path: root/src/mbgl/style/parser.cpp
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-06-14 10:41:33 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-06-14 11:25:45 -0700
commit55abb76f6840642c9734f19cb493d9efaf5329e3 (patch)
tree291d164603beedda4c43b1956e0fbaf70152c52d /src/mbgl/style/parser.cpp
parentf74c5d8abd8f2f4a3921786507d121ffac05e17a (diff)
downloadqtlocation-mapboxgl-55abb76f6840642c9734f19cb493d9efaf5329e3.tar.gz
[core] Vector source tileSize is constant
Diffstat (limited to 'src/mbgl/style/parser.cpp')
-rw-r--r--src/mbgl/style/parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/style/parser.cpp b/src/mbgl/style/parser.cpp
index a2ce5d2422..670a5dbd92 100644
--- a/src/mbgl/style/parser.cpp
+++ b/src/mbgl/style/parser.cpp
@@ -216,7 +216,7 @@ void Parser::parseSources(const JSValue& value) {
break;
case SourceType::Vector:
- source = std::make_unique<VectorSource>(id, url, tileSize, std::move(tileset));
+ source = std::make_unique<VectorSource>(id, url, std::move(tileset));
break;
case SourceType::GeoJSON: