summaryrefslogtreecommitdiff
path: root/include/mbgl/storage
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/storage')
-rw-r--r--include/mbgl/storage/network_status.hpp4
1 files changed, 2 insertions, 2 deletions
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 <atomic>
#include <mutex>
-#include <set>
+#include <unordered_set>
namespace mbgl {
@@ -28,7 +28,7 @@ public:
private:
static std::atomic<bool> online;
static std::mutex mtx;
- static std::set<util::AsyncTask*> observers;
+ static std::unordered_set<util::AsyncTask*> observers;
};
} // namespace mbgl