diff options
author | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2017-07-10 15:58:18 +0300 |
---|---|---|
committer | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2017-07-11 14:37:13 +0300 |
commit | 5e2305fa5b361f13c26bcc6254e18889aaf3da67 (patch) | |
tree | e95f42d564213d29690085a85cce4971674be831 /benchmark | |
parent | 90c61c195622c8b3106ed4a3d5c6080dfa8a65e0 (diff) | |
download | qtlocation-mapboxgl-5e2305fa5b361f13c26bcc6254e18889aaf3da67.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.
Diffstat (limited to 'benchmark')
-rw-r--r-- | benchmark/api/query.benchmark.cpp | 2 |
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, {}); } } |