diff options
author | Noel Grandin <noel@peralex.com> | 2016-02-01 11:56:21 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-02-02 09:20:47 +0000 |
commit | 98c343604dcf718b3c8ee3e38da1a50c7a0199a2 (patch) | |
tree | 5979fd35cfcdd3989f4db42afee0881a8391422b /ucb | |
parent | 04eba5f599b8ac2accfc1d6abc74a91c38616691 (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 'ucb')
-rw-r--r-- | ucb/source/ucp/file/filtask.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/file/filtask.hxx b/ucb/source/ucp/file/filtask.hxx index a515f549a664..11886e0f7199 100644 --- a/ucb/source/ucp/file/filtask.hxx +++ b/ucb/source/ucp/file/filtask.hxx @@ -28,9 +28,9 @@ #include <com/sun/star/ucb/XProgressHandler.hpp> #include <com/sun/star/task/XInteractionHandler.hpp> #include <com/sun/star/task/XInteractionRequest.hpp> -#include <boost/functional/hash.hpp> #include "filerror.hxx" #include <unordered_map> +#include <functional> namespace fileaccess { @@ -130,7 +130,7 @@ namespace fileaccess }; // end class TaskHandling - typedef std::unordered_map< sal_Int32,TaskHandling,boost::hash< sal_Int32 > > TaskMap; + typedef std::unordered_map< sal_Int32,TaskHandling,std::hash< sal_Int32 > > TaskMap; private: osl::Mutex m_aMutex; |