summaryrefslogtreecommitdiff
path: root/include/mbgl/style/expression/let.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/style/expression/let.hpp')
-rw-r--r--include/mbgl/style/expression/let.hpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/mbgl/style/expression/let.hpp b/include/mbgl/style/expression/let.hpp
index aaa16ca0c2..6829ded9b8 100644
--- a/include/mbgl/style/expression/let.hpp
+++ b/include/mbgl/style/expression/let.hpp
@@ -33,6 +33,8 @@ public:
return false;
}
+ std::vector<optional<Value>> possibleOutputs() const override;
+
Expression* getResult() const {
return result.get();
}
@@ -61,7 +63,9 @@ public:
}
return false;
}
-
+
+ std::vector<optional<Value>> possibleOutputs() const override;
+
private:
std::string name;
std::shared_ptr<Expression> value;