From 37cb2bd756104923c8a055277a9d598710943e9f Mon Sep 17 00:00:00 2001 From: Lucas Wojciechowski Date: Mon, 19 Sep 2016 17:26:25 -0700 Subject: [core] Convert uses of std::set to std::unordered_set (#6325) * src/mbgl/annotation/annotation_manager.hpp * src/mbgl/algorithm/update_renderables.hpp * src/mbgl/geometry/glyph_atlas.hpp * src/mbgl/renderer/painter.cpp and src/mbgl/renderer/render_item.hpp * src/mbgl/renderer/symbol_bucket.hpp and src/mbgl/text/glyph_store.hpp * src/mbgl/sprite/sprite_atlas.hpp * include/mbgl/storage/network_status.hpp * src/mbgl/text/collision_tile.cpp * src/mbgl/style/update_batch.hpp * platform/default/mbgl/storage/offline_download.hpp * Add GlyphRangeSet typedef * Fix whitespace & unused imports --- include/mbgl/storage/network_status.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/mbgl/storage') diff --git a/include/mbgl/storage/network_status.hpp b/include/mbgl/storage/network_status.hpp index d7f502a3b2..0d1ae54ec4 100644 --- a/include/mbgl/storage/network_status.hpp +++ b/include/mbgl/storage/network_status.hpp @@ -2,7 +2,7 @@ #include #include -#include +#include namespace mbgl { @@ -28,7 +28,7 @@ public: private: static std::atomic online; static std::mutex mtx; - static std::set observers; + static std::unordered_set observers; }; } // namespace mbgl -- cgit v1.2.1