From eb6819e74a66750235d3a4a894479faeee8146e2 Mon Sep 17 00:00:00 2001 From: Tomaž Vajngerl Date: Sat, 1 May 2021 22:13:37 +0900 Subject: change usage of boost::hash_combine to o3tl::hash_combine MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I840518a36ac43d36c95f38e09c7bfcfe1a25a525 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114984 Tested-by: Tomaž Vajngerl Reviewed-by: Tomaž Vajngerl --- vcl/inc/impfontcache.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vcl/inc/impfontcache.hxx') diff --git a/vcl/inc/impfontcache.hxx b/vcl/inc/impfontcache.hxx index 07e04a0cc848..09aa33ca906b 100644 --- a/vcl/inc/impfontcache.hxx +++ b/vcl/inc/impfontcache.hxx @@ -20,10 +20,10 @@ #ifndef INCLUDED_VCL_INC_IMPFONTCACHE_HXX #define INCLUDED_VCL_INC_IMPFONTCACHE_HXX -#include #include #include +#include #include #include @@ -53,8 +53,8 @@ struct GlyphBoundRectCacheHash std::size_t operator()(GlyphBoundRectCacheKey const& aCache) const { std::size_t seed = 0; - boost::hash_combine(seed, aCache.m_pFont); - boost::hash_combine(seed, aCache.m_nId); + o3tl::hash_combine(seed, aCache.m_pFont); + o3tl::hash_combine(seed, aCache.m_nId); return seed; } }; -- cgit