summaryrefslogtreecommitdiff
path: root/src/mbgl/layout/symbol_layout.hpp
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2017-03-02 14:49:54 -0800
committerJohn Firebaugh <john.firebaugh@gmail.com>2017-03-21 09:27:22 -0700
commitc16bd14416655101cd5e0fc0312b474271ad6470 (patch)
tree84ee576066556f720516ded20317d25b2ee5393e /src/mbgl/layout/symbol_layout.hpp
parent2dbda72c454342cc8c6b258c7cd26b29ca10d477 (diff)
downloadqtlocation-mapboxgl-c16bd14416655101cd5e0fc0312b474271ad6470.tar.gz
[core] Prefer std::map to std::unordered_map for smaller binary size
Diffstat (limited to 'src/mbgl/layout/symbol_layout.hpp')
-rw-r--r--src/mbgl/layout/symbol_layout.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/layout/symbol_layout.hpp b/src/mbgl/layout/symbol_layout.hpp
index c6e1743549..5b14090d97 100644
--- a/src/mbgl/layout/symbol_layout.hpp
+++ b/src/mbgl/layout/symbol_layout.hpp
@@ -51,7 +51,7 @@ public:
State state = Pending;
- std::unordered_map<std::string,
+ std::map<std::string,
std::pair<style::IconPaintProperties::Evaluated, style::TextPaintProperties::Evaluated>> layerPaintProperties;
private: