summaryrefslogtreecommitdiff
path: root/src/mbgl/style/expression/let.cpp
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <tmpsantos@gmail.com>2017-11-10 20:04:20 -0200
committerThiago Marcos P. Santos <tmpsantos@gmail.com>2017-11-12 13:17:57 -0200
commit92608f58858d77c17a65ae9b29758e74bb2da7d2 (patch)
treef4b0287febdea20ae58d4dc31be294d50253b254 /src/mbgl/style/expression/let.cpp
parent465b345dd2d9e8ff95accecc84b6ec6ff24e0a2f (diff)
downloadqtlocation-mapboxgl-92608f58858d77c17a65ae9b29758e74bb2da7d2.tar.gz
[core] Fix build on Android + GCC and Android + armeabi
Sadly we don't have bots for these two setups.
Diffstat (limited to 'src/mbgl/style/expression/let.cpp')
-rw-r--r--src/mbgl/style/expression/let.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mbgl/style/expression/let.cpp b/src/mbgl/style/expression/let.cpp
index 8e206d3582..561e8515d4 100644
--- a/src/mbgl/style/expression/let.cpp
+++ b/src/mbgl/style/expression/let.cpp
@@ -1,5 +1,6 @@
#include <mbgl/style/expression/let.hpp>
#include <mbgl/style/conversion/get_json_type.hpp>
+#include <mbgl/util/string.hpp>
namespace mbgl {
namespace style {
@@ -24,7 +25,7 @@ ParseResult Let::parse(const Convertible& value, ParsingContext& ctx) {
std::size_t length = arrayLength(value);
if (length < 4) {
- ctx.error("Expected at least 3 arguments, but found " + std::to_string(length - 1) + " instead.");
+ ctx.error("Expected at least 3 arguments, but found " + util::toString(length - 1) + " instead.");
return ParseResult();
}