comphelper: replace boost::hash with std::hash

Change-Id: I9824145518cbac6ae3e700c402f1335b7d1b56f8
This commit is contained in:
Michael Stahl
2016-01-27 21:28:44 +01:00
parent 8e2b965858
commit 8b1fc9108f

View File

@@ -30,7 +30,8 @@
#include <cppuhelper/basemutex.hxx>
#include <cppuhelper/weakref.hxx>
#include <cppuhelper/implbase.hxx>
#include <boost/functional/hash.hpp>
#include <functional>
#include <unordered_map>
#include <vector>
@@ -59,9 +60,9 @@ class COMPHELPER_DLLPUBLIC NumberedCollection : private ::cppu::BaseMutex
};
typedef std::unordered_map<
long ,
TNumberedItem ,
::boost::hash< long > ,
long,
TNumberedItem,
::std::hash<long>,
::std::equal_to< long > > TNumberedItemHash;
typedef ::std::vector< long > TDeadItemList;