summaryrefslogtreecommitdiffstats
path: root/rsc/inc/rschash.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'rsc/inc/rschash.hxx')
-rw-r--r--rsc/inc/rschash.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/rsc/inc/rschash.hxx b/rsc/inc/rschash.hxx
index 9eced4737414..898969e7c14c 100644
--- a/rsc/inc/rschash.hxx
+++ b/rsc/inc/rschash.hxx
@@ -21,7 +21,7 @@
#include <sal/types.h>
#include <rtl/string.hxx>
-#include <boost/unordered_map.hpp>
+#include <unordered_map>
typedef sal_uInt32 Atom;
@@ -30,8 +30,8 @@ typedef sal_uInt32 Atom;
class AtomContainer
{
Atom m_nNextID;
- boost::unordered_map< OString, Atom, OStringHash > m_aStringToID;
- boost::unordered_map< Atom, OString > m_aIDToString;
+ std::unordered_map< OString, Atom, OStringHash > m_aStringToID;
+ std::unordered_map< Atom, OString > m_aIDToString;
public:
AtomContainer();