summaryrefslogtreecommitdiff
path: root/src/mbgl/style/expression/literal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/style/expression/literal.cpp')
-rw-r--r--src/mbgl/style/expression/literal.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mbgl/style/expression/literal.cpp b/src/mbgl/style/expression/literal.cpp
index fc11878bea..7e79fcbfe6 100644
--- a/src/mbgl/style/expression/literal.cpp
+++ b/src/mbgl/style/expression/literal.cpp
@@ -1,5 +1,5 @@
-
#include <mbgl/style/expression/literal.hpp>
+#include <mbgl/util/string.hpp>
namespace mbgl {
namespace style {
@@ -70,7 +70,7 @@ ParseResult Literal::parse(const Convertible& value, ParsingContext& ctx) {
} else if (isArray(value)) {
// object or array value, quoted with ["literal", value]
if (arrayLength(value) != 2) {
- ctx.error("'literal' expression requires exactly one argument, but found " + std::to_string(arrayLength(value) - 1) + " instead.");
+ ctx.error("'literal' expression requires exactly one argument, but found " + util::toString(arrayLength(value) - 1) + " instead.");
return ParseResult();
}
const optional<Value> parsedValue = parseValue(arrayMember(value, 1), ctx);