summaryrefslogtreecommitdiff
path: root/benchmark/function/composite_function.benchmark.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/function/composite_function.benchmark.cpp')
-rw-r--r--benchmark/function/composite_function.benchmark.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/function/composite_function.benchmark.cpp b/benchmark/function/composite_function.benchmark.cpp
index 8064d548fa..c9e4f7f114 100644
--- a/benchmark/function/composite_function.benchmark.cpp
+++ b/benchmark/function/composite_function.benchmark.cpp
@@ -52,7 +52,7 @@ static void Evaluate_CompositeFunction(benchmark::State& state) {
while(state.KeepRunning()) {
float z = 24.0f * static_cast<float>(rand() % 100) / 100;
- function->asExpression().evaluate(z, StubGeometryTileFeature(PropertyMap { { "x", static_cast<int64_t>(rand() % 100) } }), -1.0f);
+ function->asExpression().evaluate(z, StubGeometryTileFeature(PropertyMap { { "x", static_cast<int64_t>(rand() % 100) } }), {}, -1.0f);
}
state.SetLabel(std::to_string(stopCount).c_str());