summaryrefslogtreecommitdiff
path: root/sc/source/core/data/dpresfilter.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/core/data/dpresfilter.cxx')
-rw-r--r--sc/source/core/data/dpresfilter.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/core/data/dpresfilter.cxx b/sc/source/core/data/dpresfilter.cxx
index c0a496cb76ce..346cbef8b4f1 100644
--- a/sc/source/core/data/dpresfilter.cxx
+++ b/sc/source/core/data/dpresfilter.cxx
@@ -13,7 +13,7 @@
#include <unotools/charclass.hxx>
#include <rtl/math.hxx>
#include <sal/log.hxx>
-#include <boost/functional/hash.hpp>
+#include <o3tl/hash_combine.hxx>
#include <com/sun/star/sheet/DataPilotFieldFilter.hpp>
#include <com/sun/star/uno/Sequence.hxx>
@@ -30,8 +30,8 @@ ScDPResultFilterContext::ScDPResultFilterContext() :
size_t ScDPResultTree::NamePairHash::operator() (const NamePairType& rPair) const
{
std::size_t seed = 0;
- boost::hash_combine(seed, rPair.first.hashCode());
- boost::hash_combine(seed, rPair.second.hashCode());
+ o3tl::hash_combine(seed, rPair.first.hashCode());
+ o3tl::hash_combine(seed, rPair.second.hashCode());
return seed;
}