summaryrefslogtreecommitdiff
path: root/include/unotools/atom.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/unotools/atom.hxx')
-rw-r--r--include/unotools/atom.hxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/include/unotools/atom.hxx b/include/unotools/atom.hxx
index 96f1574ecae1..fdc656e5b69a 100644
--- a/include/unotools/atom.hxx
+++ b/include/unotools/atom.hxx
@@ -24,7 +24,6 @@
#include <osl/mutex.hxx>
#include <com/sun/star/util/XAtomServer.hpp>
#include <cppuhelper/implbase1.hxx>
-#include <boost/functional/hash.hpp>
#include <list>
#include <unordered_map>
@@ -40,9 +39,9 @@ namespace utl {
class AtomProvider
{
- int m_nAtoms;
- std::unordered_map< int, OUString, ::boost::hash< int > > m_aStringMap;
- std::unordered_map< OUString, int, OUStringHash > m_aAtomMap;
+ int m_nAtoms;
+ std::unordered_map<int, OUString> m_aStringMap;
+ std::unordered_map<OUString, int, OUStringHash> m_aAtomMap;
public:
AtomProvider();
~AtomProvider();
@@ -53,7 +52,7 @@ namespace utl {
class UNOTOOLS_DLLPUBLIC MultiAtomProvider
{
- std::unordered_map< int, AtomProvider*, ::boost::hash< int > > m_aAtomLists;
+ std::unordered_map<int, AtomProvider*> m_aAtomLists;
public:
MultiAtomProvider();
~MultiAtomProvider();