summaryrefslogtreecommitdiff
path: root/benchmark/parse/filter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/parse/filter.cpp')
-rw-r--r--benchmark/parse/filter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/parse/filter.cpp b/benchmark/parse/filter.cpp
index 6b430a9b11..5214f682d6 100644
--- a/benchmark/parse/filter.cpp
+++ b/benchmark/parse/filter.cpp
@@ -28,7 +28,7 @@ static void Parse_EvaluateFilter(benchmark::State& state) {
const PropertyMap properties = { { "foo", std::string("bar") } };
while (state.KeepRunning()) {
- filter(FeatureType::Unknown, [&] (const std::string& key) -> optional<Value> {
+ filter(FeatureType::Unknown, {}, [&] (const std::string& key) -> optional<Value> {
auto it = properties.find(key);
if (it == properties.end())
return {};