summaryrefslogtreecommitdiff
path: root/include/mbgl/style/expression/in.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/style/expression/in.hpp')
-rw-r--r--include/mbgl/style/expression/in.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/mbgl/style/expression/in.hpp b/include/mbgl/style/expression/in.hpp
index 6bd57e2833..f3e7551914 100644
--- a/include/mbgl/style/expression/in.hpp
+++ b/include/mbgl/style/expression/in.hpp
@@ -10,8 +10,7 @@ namespace expression {
class In final : public Expression {
public:
- In(std::unique_ptr<Expression> needle_, std::unique_ptr<Expression> haystack_)
- : Expression(Kind::In, type::Boolean), needle(std::move(needle_)), haystack(std::move(haystack_)) {}
+ In(std::unique_ptr<Expression> needle_, std::unique_ptr<Expression> haystack_);
static ParseResult parse(const mbgl::style::conversion::Convertible& value, ParsingContext& ctx);