summaryrefslogtreecommitdiff
path: root/include/mbgl/style/expression/at.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/style/expression/at.hpp')
-rw-r--r--include/mbgl/style/expression/at.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/mbgl/style/expression/at.hpp b/include/mbgl/style/expression/at.hpp
index e3eefa4fe8..27fccc761f 100644
--- a/include/mbgl/style/expression/at.hpp
+++ b/include/mbgl/style/expression/at.hpp
@@ -28,6 +28,10 @@ public:
return false;
}
+ std::vector<optional<Value>> possibleOutputs() const override {
+ return { nullopt };
+ }
+
private:
std::unique_ptr<Expression> index;
std::unique_ptr<Expression> input;