summaryrefslogtreecommitdiff
path: root/src/mbgl/geometry
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/geometry')
-rw-r--r--src/mbgl/geometry/line_atlas.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mbgl/geometry/line_atlas.hpp b/src/mbgl/geometry/line_atlas.hpp
index a2bda71863..7658ed33c1 100644
--- a/src/mbgl/geometry/line_atlas.hpp
+++ b/src/mbgl/geometry/line_atlas.hpp
@@ -5,7 +5,7 @@
#include <mbgl/util/optional.hpp>
#include <vector>
-#include <map>
+#include <unordered_map>
namespace mbgl {
@@ -47,7 +47,7 @@ private:
bool dirty;
mbgl::optional<gl::UniqueTexture> texture;
int nextRow = 0;
- std::map<size_t, LinePatternPos> positions;
+ std::unordered_map<size_t, LinePatternPos> positions;
};
} // namespace mbgl