summaryrefslogtreecommitdiff
path: root/src/mbgl/renderer/line_bucket.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/renderer/line_bucket.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/renderer/line_bucket.hpp')
-rw-r--r--src/mbgl/renderer/line_bucket.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/renderer/line_bucket.hpp b/src/mbgl/renderer/line_bucket.hpp
index 67a88229d2..8d1ff2a3f2 100644
--- a/src/mbgl/renderer/line_bucket.hpp
+++ b/src/mbgl/renderer/line_bucket.hpp
@@ -38,7 +38,7 @@ public:
optional<gl::VertexBuffer<LineLayoutVertex>> vertexBuffer;
optional<gl::IndexBuffer<gl::Triangles>> indexBuffer;
- std::unordered_map<std::string, LineProgram::PaintPropertyBinders> paintPropertyBinders;
+ std::map<std::string, LineProgram::PaintPropertyBinders> paintPropertyBinders;
private:
void addGeometry(const GeometryCoordinates&, FeatureType);