summaryrefslogtreecommitdiff
path: root/src/mbgl/style/update_batch.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/style/update_batch.hpp')
-rw-r--r--src/mbgl/style/update_batch.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mbgl/style/update_batch.hpp b/src/mbgl/style/update_batch.hpp
index ee82c98fda..562df52afa 100644
--- a/src/mbgl/style/update_batch.hpp
+++ b/src/mbgl/style/update_batch.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include <set>
+#include <unordered_set>
#include <string>
namespace mbgl {
@@ -8,7 +8,7 @@ namespace style {
class UpdateBatch {
public:
- std::set<std::string> sourceIDs;
+ std::unordered_set<std::string> sourceIDs;
};
} // namespace style