summaryrefslogtreecommitdiff
path: root/include/llmr/style
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2014-07-09 16:27:23 -0700
committerKonstantin Käfer <mail@kkaefer.com>2014-07-09 16:27:23 -0700
commit22c8afced5970cac24a7ce98d67ac6741bb26cef (patch)
tree1966072953231ba552ec7e284796199bca40d5ab /include/llmr/style
parentf2ee02d3ca4c8033d120d8f681f4edf54dfa89ca (diff)
downloadqtlocation-mapboxgl-22c8afced5970cac24a7ce98d67ac6741bb26cef.tar.gz
replace {{token}} with {token}, and %d/%d/%d with {z}/{x}/{y}
refs https://github.com/mapbox/mapbox-gl-style-spec/pull/87
Diffstat (limited to 'include/llmr/style')
-rw-r--r--include/llmr/style/value.hpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/llmr/style/value.hpp b/include/llmr/style/value.hpp
index bdcba4cad3..fac316d3d5 100644
--- a/include/llmr/style/value.hpp
+++ b/include/llmr/style/value.hpp
@@ -10,12 +10,6 @@ typedef util::variant<bool, int64_t, uint64_t, double, std::string> Value;
std::string toString(const Value &value);
-inline std::string& operator+=(std::string& out, const Value& value) {
- out += toString(value);
- return out;
-}
-
-
Value parseValue(pbf data);
namespace util {