summaryrefslogtreecommitdiff
path: root/xmloff/source/core/xmltkmap.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/core/xmltkmap.cxx')
-rw-r--r--xmloff/source/core/xmltkmap.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/core/xmltkmap.cxx b/xmloff/source/core/xmltkmap.cxx
index 8efb26c1131e..5e95afc44296 100644
--- a/xmloff/source/core/xmltkmap.cxx
+++ b/xmloff/source/core/xmltkmap.cxx
@@ -20,7 +20,7 @@
#include <rtl/ustring.hxx>
#include <xmloff/xmltkmap.hxx>
#include <xmloff/xmltoken.hxx>
-#include <boost/functional/hash.hpp>
+#include <o3tl/hash_combine.hxx>
#include <unordered_map>
#include <utility>
@@ -35,8 +35,8 @@ private:
std::size_t operator()(const std::pair<sal_uInt16,OUString> &pair) const
{
std::size_t seed = 0;
- boost::hash_combine(seed, pair.first);
- boost::hash_combine(seed, pair.second.hashCode());
+ o3tl::hash_combine(seed, pair.first);
+ o3tl::hash_combine(seed, pair.second.hashCode());
return seed;
}
};