summaryrefslogtreecommitdiff
path: root/include/mbgl/style/expression/literal.hpp
diff options
context:
space:
mode:
authorAnand Thakker <anandthakker@users.noreply.github.com>2018-02-21 21:39:33 -0500
committerGitHub <noreply@github.com>2018-02-21 21:39:33 -0500
commitb16893f903b3f81803d59cdfa3253a3fb09cfd3e (patch)
tree565ba4b762b796d7c6a18f850f2c3d2c7babdc5e /include/mbgl/style/expression/literal.hpp
parent0525fd1e4a207040b6268ee0b2a9634d8fa37753 (diff)
downloadqtlocation-mapboxgl-b16893f903b3f81803d59cdfa3253a3fb09cfd3e.tar.gz
Correctly parse constant expressions in dds style properties (#11282)
* Correctly parse constant expressions in dds style properties Closes #10849 * Clarify
Diffstat (limited to 'include/mbgl/style/expression/literal.hpp')
-rw-r--r--include/mbgl/style/expression/literal.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/mbgl/style/expression/literal.hpp b/include/mbgl/style/expression/literal.hpp
index 82983d78af..a5c5fa109d 100644
--- a/include/mbgl/style/expression/literal.hpp
+++ b/include/mbgl/style/expression/literal.hpp
@@ -32,6 +32,10 @@ public:
std::vector<optional<Value>> possibleOutputs() const override {
return {{ value }};
}
+
+ Value getValue() const {
+ return value;
+ }
private:
Value value;