summaryrefslogtreecommitdiff
path: root/src/mbgl/layout/merge_lines.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/layout/merge_lines.cpp')
-rw-r--r--src/mbgl/layout/merge_lines.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/mbgl/layout/merge_lines.cpp b/src/mbgl/layout/merge_lines.cpp
index 2a3afa42b2..616a8a3ff5 100644
--- a/src/mbgl/layout/merge_lines.cpp
+++ b/src/mbgl/layout/merge_lines.cpp
@@ -1,7 +1,6 @@
#include <mbgl/layout/merge_lines.hpp>
#include <mbgl/layout/symbol_feature.hpp>
-
-#include <boost/functional/hash.hpp>
+#include <mbgl/util/hash.hpp>
namespace mbgl {
namespace util {
@@ -43,10 +42,7 @@ size_t mergeFromLeft(std::vector<SymbolFeature>& features,
}
size_t getKey(const std::u16string& text, const GeometryCoordinate& coord) {
- auto hash = std::hash<std::u16string>()(text);
- boost::hash_combine(hash, coord.x);
- boost::hash_combine(hash, coord.y);
- return hash;
+ return util::hash(text, coord.x, coord.y);
}
void mergeLines(std::vector<SymbolFeature>& features) {