summaryrefslogtreecommitdiff
path: root/src/mbgl
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <tmpsantos@gmail.com>2017-12-14 14:48:20 +0200
committerThiago Marcos P. Santos <tmpsantos@gmail.com>2018-01-08 22:58:20 +0200
commitf880baaeb73a196dfcc80786b37e0f7fb6730bd1 (patch)
treee50ad799954e09df64524f89e81ac51d65d29f20 /src/mbgl
parentaf183f3952d851e66a6f9b9fc7bc256eab6383e5 (diff)
downloadqtlocation-mapboxgl-f880baaeb73a196dfcc80786b37e0f7fb6730bd1.tar.gz
[windows][qt] Remove std:: namespace of some functions
Not available on Windows.
Diffstat (limited to 'src/mbgl')
-rw-r--r--src/mbgl/style/expression/let.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/style/expression/let.cpp b/src/mbgl/style/expression/let.cpp
index 561e8515d4..5c08248eef 100644
--- a/src/mbgl/style/expression/let.cpp
+++ b/src/mbgl/style/expression/let.cpp
@@ -38,7 +38,7 @@ ParseResult Let::parse(const Convertible& value, ParsingContext& ctx) {
}
bool isValidName = std::all_of(name->begin(), name->end(), [](unsigned char c) {
- return std::isalnum(c) || c == '_';
+ return ::isalnum(c) || c == '_';
});
if (!isValidName) {
ctx.error("Variable names must contain only alphanumeric characters or '_'.", 1);