summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <tmpsantos@gmail.com>2017-07-10 15:58:18 +0300
committerThiago Marcos P. Santos <tmpsantos@gmail.com>2017-07-10 16:11:05 +0300
commitefeb229bad58372d33a90710d27c77d0da8c8e8c (patch)
treeb9ac52feff1fb332208f50e07fc110531c0ab58c
parent7d59e3f8b3a0b83833cd87eb8bfefa7d0856f0a9 (diff)
downloadqtlocation-mapboxgl-efeb229bad58372d33a90710d27c77d0da8c8e8c.tar.gz
[benchmark] Fix build on GCC 5
For some mysterious reason GCC 5 was complaining about the implicit default value. Passing it explicitly fixes it.
-rw-r--r--benchmark/api/query.benchmark.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/api/query.benchmark.cpp b/benchmark/api/query.benchmark.cpp
index 763349c07a..4c11a56da5 100644
--- a/benchmark/api/query.benchmark.cpp
+++ b/benchmark/api/query.benchmark.cpp
@@ -48,7 +48,7 @@ static void API_queryRenderedFeaturesAll(::benchmark::State& state) {
QueryBenchmark bench;
while (state.KeepRunning()) {
- bench.map.queryRenderedFeatures(bench.box);
+ bench.map.queryRenderedFeatures(bench.box, {});
}
}