summaryrefslogtreecommitdiff
path: root/sot
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-02-01 11:56:21 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-02-02 09:20:47 +0000
commit98c343604dcf718b3c8ee3e38da1a50c7a0199a2 (patch)
tree5979fd35cfcdd3989f4db42afee0881a8391422b /sot
parent04eba5f599b8ac2accfc1d6abc74a91c38616691 (diff)
boost::hash->std::hash
Change-Id: If4d1e4071995f07212fad958b0226d5824d168f8 Reviewed-on: https://gerrit.libreoffice.org/21989 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sot')
-rw-r--r--sot/source/sdstor/stgcache.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sot/source/sdstor/stgcache.hxx b/sot/source/sdstor/stgcache.hxx
index 97cada204e74..b9d0fab53778 100644
--- a/sot/source/sdstor/stgcache.hxx
+++ b/sot/source/sdstor/stgcache.hxx
@@ -26,9 +26,9 @@
#include <tools/stream.hxx>
#include <stgelem.hxx>
#include <boost/noncopyable.hpp>
-#include <boost/functional/hash.hpp>
#include <salhelper/simplereferenceobject.hxx>
#include <unordered_map>
+#include <functional>
class UCBStorageStream;
class StgPage;
@@ -40,7 +40,7 @@ class StgCache
typedef std::unordered_map
<
sal_Int32, rtl::Reference< StgPage >,
- boost::hash< sal_Int32 >, std::equal_to< sal_Int32 >
+ std::hash< sal_Int32 >, std::equal_to< sal_Int32 >
> IndexToStgPage;
typedef std::vector< rtl::Reference< StgPage > > LRUList;