diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-02-15 20:41:33 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-02-16 12:54:44 +0000 |
commit | a1ceacc17e3f30d5e9c06b3218ad8ec26ca2f1b9 (patch) | |
tree | 56a29f66f75f326a0a677ab1697ce28f1bc9fcbf /include/unotools/atom.hxx | |
parent | 18f41dfaf19d656d290c47d196ef2702e169a522 (diff) |
boost::foo_ptr->std::foo_ptr
Change-Id: I9219619b538b6530a89f5932ac51eb3b62eb396a
Diffstat (limited to 'include/unotools/atom.hxx')
-rw-r--r-- | include/unotools/atom.hxx | 9 |
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(); |