summaryrefslogtreecommitdiff
path: root/test/style/filter.test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/style/filter.test.cpp')
-rw-r--r--test/style/filter.test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/style/filter.test.cpp b/test/style/filter.test.cpp
index 33b64978f5..2f12246078 100644
--- a/test/style/filter.test.cpp
+++ b/test/style/filter.test.cpp
@@ -16,7 +16,7 @@ using namespace mbgl::style;
Filter parse(const char * expression) {
rapidjson::GenericDocument<rapidjson::UTF8<>, rapidjson::CrtAllocator> doc;
doc.Parse<0>(expression);
- return *conversion::convert<Filter>(doc);
+ return *conversion::convert<Filter, JSValue>(doc);
}
Feature feature(const PropertyMap& properties, const Geometry<double>& geometry = Point<double>()) {