summaryrefslogtreecommitdiff
path: root/src/mbgl
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-03-23 17:15:18 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-03-23 17:15:18 -0700
commit2f9e6f4e94de87c7d5604bd757e9d6b297ae4a86 (patch)
tree42216113ffd87c637c0838166bfdb919984a728a /src/mbgl
parent6454847028cc3cc57711eb2dbc26351994a3ef13 (diff)
downloadqtlocation-mapboxgl-2f9e6f4e94de87c7d5604bd757e9d6b297ae4a86.tar.gz
[core] Allow the use of special characters in property field names
Fixes #4336
Diffstat (limited to 'src/mbgl')
-rw-r--r--src/mbgl/util/token.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/util/token.hpp b/src/mbgl/util/token.hpp
index a2cc267bfe..722b08f773 100644
--- a/src/mbgl/util/token.hpp
+++ b/src/mbgl/util/token.hpp
@@ -8,7 +8,7 @@
namespace mbgl {
namespace util {
-const static std::string tokenReservedChars = "{}()[]<>$=:;.,^";
+const static std::string tokenReservedChars = "{}";
// Replaces {tokens} in a string by calling the lookup function.
template <typename Lookup>